SkillsMP

Search, discover, and install AI coding skills from SkillsMP marketplace with semantic search

SkillsMP MCP Server

A Model Context Protocol (MCP) server that enables AI agents to search, discover, and install skills from the SkillsMP marketplace.

Features

ToolDescription
skillsmp_searchSearch skills by keywords with pagination and sorting
skillsmp_ai_searchAI-powered semantic search using natural language
skillsmp_get_skill_contentRead skill content (SKILL.md) from GitHub
skillsmp_list_repo_skillsList available skills in a repository
skillsmp_install_skillInstall skills to AI coding agents

Requirements

Setup

Claude Code

claude mcp add skillsmp -- npx -y skillsmp-mcp-server --env SKILLSMP_API_KEY=your_api_key

Cursor

Add to your Cursor MCP configuration (~/.cursor/mcp.json):

{
  "mcpServers": {
    "skillsmp": {
      "command": "npx",
      "args": ["-y", "skillsmp-mcp-server"],
      "env": {
        "SKILLSMP_API_KEY": "your_api_key"
      }
    }
  }
}

Claude Desktop

Add to your Claude Desktop configuration:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "skillsmp": {
      "command": "npx",
      "args": ["-y", "skillsmp-mcp-server"],
      "env": {
        "SKILLSMP_API_KEY": "your_api_key"
      }
    }
  }
}

Opencode

Add to your Opencode configuration:

{
  "mcp": {
    "skillsmp": {
      "type": "local",
      "command": ["npx", "-y", "skillsmp-mcp-server"],
      "env": {
        "SKILLSMP_API_KEY": "your_api_key"
      },
      "enabled": true
    }
  }
}

Google Antigravity

Add to your Antigravity MCP configuration:

{
  "mcpServers": {
    "skillsmp": {
      "command": "npx",
      "args": ["-y", "skillsmp-mcp-server"],
      "env": {
        "SKILLSMP_API_KEY": "your_api_key"
      }
    }
  }
}

Roo Code

Add to your Roo Code MCP settings:

{
  "mcpServers": {
    "skillsmp": {
      "command": "npx",
      "args": ["-y", "skillsmp-mcp-server"],
      "env": {
        "SKILLSMP_API_KEY": "your_api_key"
      }
    }
  }
}

GitHub Copilot

Add to your Copilot MCP configuration:

{
  "mcpServers": {
    "skillsmp": {
      "command": "npx",
      "args": ["-y", "skillsmp-mcp-server"],
      "env": {
        "SKILLSMP_API_KEY": "your_api_key"
      }
    }
  }
}

Environment Variables

VariableRequiredDescription
SKILLSMP_API_KEYYesYour SkillsMP API key
TRANSPORTNoTransport type: stdio (default) or http
PORTNoHTTP port when using http transport (default: 3000)

Usage

Once configured, the MCP server tools become available to your AI assistant.

Search Skills

Search for Python skills sorted by stars

AI Semantic Search

Find skills that help with building REST APIs with authentication

List Repository Skills

What skills are available in anthropics/claude-code?

Install Skills

Install the frontend-design skill from anthropics/claude-code to Claude Code

API Reference

skillsmp_search

Search skills by keywords.

ParameterTypeRequiredDefaultDescription
querystringYes-Search keywords
pagenumberNo1Page number
limitnumberNo20Results per page (max: 100)
sort_bystringNostarsSort by stars or recent

skillsmp_ai_search

AI-powered semantic search using natural language.

ParameterTypeRequiredDescription
querystringYesNatural language query

skillsmp_get_skill_content

Read skill content from GitHub repository.

ParameterTypeRequiredDefaultDescription
ownerstringYes-GitHub username/org
repostringYes-Repository name
pathstringNo-Path to skill folder
branchstringNomainGit branch

skillsmp_list_repo_skills

List all skills in a repository.

ParameterTypeRequiredDescription
sourcestringYesGitHub owner/repo

skillsmp_install_skill

Install skills to AI coding agents.

ParameterTypeRequiredDefaultDescription
sourcestringYes-GitHub owner/repo
skillsstringYes-Skill names (comma-separated)
agentsstringYes-Target agents (comma-separated)
globalbooleanNofalseInstall user-level instead of project-level

Supported Agents: claude-code, cursor, codex, opencode, antigravity, github-copilot, roo

HTTP Transport

For remote deployments or multi-client scenarios:

SKILLSMP_API_KEY="your_api_key" TRANSPORT=http PORT=3000 npx skillsmp-mcp-server

Development

From Source

git clone https://github.com/anilcancakir/skillsmp-mcp-server.git
cd skillsmp-mcp-server
npm install
npm run build
npm run dev

Running Tests

npm run test:run

License

MIT License - see LICENSE for details.

Links


Built with the Model Context Protocol TypeScript SDK.

Related Servers