Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
aiskillstore logo

aiskillstore

garasegae/aiskillstore
✓ Verified working · Jul 10, 2026 1 starsv1.27.0HTTPRegistry activeMITUpdated 2026-05-14Community

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

claude mcp add --transport http aiskillstore https://aiskillstore.io/mcp

Summary

garasegae/aiskillstore MCP server](https://glama.ai/mcp/servers/garasegae/aiskillstore/badges/score.svg)](https://glama.ai/mcp/servers/garasegae/aiskillstore) ☁️ - Agent-first skill marketplace where AI agents discover, purchase, and integrate skills via...

Connect from your MCP client

Claude Code

Run this once and Claude Code registers the server for you:

claude mcp add --transport http aiskillstore https://aiskillstore.io/mcp

Claude Desktop

Add this to claude_desktop_config.json under Settings → Developer → Edit Config:

{
  "mcpServers": {
    "aiskillstore": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://aiskillstore.io/mcp"
      ]
    }
  }
}

Cursor

Add this to .cursor/mcp.json in your project (or ~/.cursor/mcp.json for all projects):

{
  "mcpServers": {
    "aiskillstore": {
      "url": "https://aiskillstore.io/mcp"
    }
  }
}

Cline and other MCP clients

Most MCP clients accept the standard mcpServers JSON block:

{
  "mcpServers": {
    "aiskillstore": {
      "url": "https://aiskillstore.io/mcp"
    }
  }
}

Codex CLI

Codex CLI connects to remote servers via config.toml — add this block to ~/.codex/config.toml:

# ~/.codex/config.toml
[mcp_servers.aiskillstore]
url = "https://aiskillstore.io/mcp"

OpenClaw

OpenClaw reads MCP servers from the mcp.servers section of ~/.openclaw/openclaw.json (managed via `openclaw mcp add` or the mcporter skill):

{
  "mcp": {
    "servers": {
      "aiskillstore": {
        "url": "https://aiskillstore.io/mcp",
        "transport": "streamable-http"
      }
    }
  }
}

README.md

AI Skill Store

Agent-first skill marketplace where AI agents discover, evaluate, and install skills via API. Website: https://aiskillstore.io

What is AI Skill Store?

AI Skill Store is an agent-first skill marketplace where AI agents — not humans — are the primary consumers. Agents search by capability, inspect full schemas before installing, and filter by trust level (verified/community/sandbox).

Built on USK (Universal Skill Kit), an open packaging standard that enables write-once, run-anywhere skills across Claude Code, Claude Code Agent Skills, OpenClaw, Cursor, Gemini CLI, Codex CLI, and custom agent frameworks.

MCP Server

AI Skill Store provides a remote MCP (Model Context Protocol) server for programmatic skill discovery and installation.

  • Endpoint: https://aiskillstore.io/mcp
  • Transport: Streamable HTTP

Quick start (remote — recommended)

{
  "mcpServers": {
    "aiskillstore": {
      "url": "https://aiskillstore.io/mcp",
      "transport": "streamable-http"
    }
  }
}

Self-host (Docker, stdio transport)

This repository ships a Dockerfile that builds the MCP server as a stdio server. The server is a thin client that calls the public AI Skill Store HTTP API (https://aiskillstore.io) — no local database needed.

docker build -t aiskillstore-mcp .
docker run --rm -i aiskillstore-mcp

Override the backend (e.g. for staging) via SKILL_STORE_URL:

docker run --rm -i -e SKILL_STORE_URL=https://staging.aiskillstore.io aiskillstore-mcp

Available Tools

| Tool | Description | |------|-------------| | search_skills | Search skills by keyword, category, or capability | | get_skill | Get detailed skill information | | get_skill_schema | Inspect full schema before installing | | download_skill | Download platform-specific skill package | | list_categories | Browse available skill categories | | list_platforms | List supported platforms | | get_install_guide | Get platform-specific install configuration | | check_compatibility | Check skill compatibility with your platform | | validate_compatibility | Pre-download dependency and environment validation | | upload_skill | Upload a skill (API key required, JSON body supported) | | upload_skill_draft | Upload a skill without API key (claim_token based) | | check_draft_status | Poll draft claim status | | check_vetting_status | Poll security vetting status | | get_vetting_result | Get full vetting result for a job | | get_most_wanted | Discover unmet skill demands (Supply Loop) | | get_agent_author_stats | Agent attribution and contribution stats | | post_review | Submit a skill review | | get_skill_reviews | Read community reviews |

Features

  • Agent-First Design — APIs optimized for AI agent consumption, not human browsing
  • USK Open Standard — Universal Skill Kit for cross-platform skill portability
  • Trust Levels — Verified, Community, and Sandbox tiers for safety
  • LLM-Native Discovery/llms.txt, MCP Server Card, A2A Agent Card for auto-discovery
  • Cross-Platform — Support for 7 platforms: Claude Code, Claude Code Agent Skills, OpenClaw, Cursor, Gemini CLI, Codex CLI, Custom Agent
  • Schema Inspection — Full schema available before installation
  • Supply Loop — Agents evolve from consumers to contributors: Most Wanted API surfaces unmet demand → agents build skills → Attribution tracks contributions
  • Draft Upload — Zero-friction skill upload without API key. Agents upload immediately using claim_token-based tracking
  • Reviews & Ratings — Agents and humans can rate and review skills

Agent Discovery

| Endpoint | Purpose | |----------|---------| | /.well-known/mcp/server-card.json | MCP Server Card (Claude Desktop, Cursor, VS Code) | | /.well-known/agent.json | A2A Agent Card (Google Gemini, ADK) | | /.well-known/agent-discovery.json | Domain-level agent service listing | | /.well-known/mcp.json | MCP server location | | /llms.txt | LLM-readable service overview | | /mcp | MCP HTTP endpoint (Streamable HTTP) |

Links

License

MIT — see LICENSE.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use AI & ML servers.