Skip to main content
Glama
anilcancakir

skillsmp-mcp-server

by anilcancakir

SkillsMP MCP Server

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

Features

Tool

Description

skillsmp_search

Search skills by keywords with pagination and sorting

skillsmp_ai_search

AI-powered semantic search using natural language

skillsmp_get_skill_content

Read skill content (SKILL.md) from GitHub

skillsmp_list_repo_skills

List available skills in a repository

skillsmp_install_skill

Install skills to AI coding agents

Related MCP server: skilldb-mcp

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

Variable

Required

Description

SKILLSMP_API_KEY

Yes

Your SkillsMP API key

TRANSPORT

No

Transport type: stdio (default) or http

PORT

No

HTTP 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
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

Search skills by keywords.

Parameter

Type

Required

Default

Description

query

string

Yes

-

Search keywords

page

number

No

1

Page number

limit

number

No

20

Results per page (max: 100)

sort_by

string

No

stars

Sort by stars or recent

AI-powered semantic search using natural language.

Parameter

Type

Required

Description

query

string

Yes

Natural language query

skillsmp_get_skill_content

Read skill content from GitHub repository.

Parameter

Type

Required

Default

Description

owner

string

Yes

-

GitHub username/org

repo

string

Yes

-

Repository name

path

string

No

-

Path to skill folder

branch

string

No

main

Git branch

skillsmp_list_repo_skills

List all skills in a repository.

Parameter

Type

Required

Description

source

string

Yes

GitHub owner/repo

skillsmp_install_skill

Install skills to AI coding agents.

Parameter

Type

Required

Default

Description

source

string

Yes

-

GitHub owner/repo

skills

string

Yes

-

Skill names (comma-separated)

agents

string

Yes

-

Target agents (comma-separated)

global

boolean

No

false

Install 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.


Built with the Model Context Protocol TypeScript SDK.

Available Tools

5 tools
skillsmp_get_skill_contentGet Skill ContentA
Read-onlyIdempotent

Read skill file content (SKILL.md) from a GitHub repository. Use to preview a skill before installing.

Parameters:

  • owner: GitHub username/org (e.g., "anthropics")

  • repo: Repository name (e.g., "claude-code")

  • path: Path to skill folder (e.g., "plugins/frontend-design/skills/frontend-design")

  • branch: Git branch (default: "main")

If path has no skill.md, returns directory listing.

ParametersJSON Schema
NameRequiredDescriptionDefault
ownerYesGitHub repository owner (e.g., 'davila7')
repoYesGitHub repository name (e.g., 'claude-code-templates')
pathNoPath to skill within repo (e.g., 'cli-tool/components/skills/development/senior-prompt-engineer'). If not provided, lists available skills.
branchNoGit branch (default: 'main')main

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already provide readOnlyHint=true and idempotentHint=true, indicating safe reads. The description adds valuable behavioral details beyond annotations, such as 'If path has no skill.md, returns directory listing,' which helps the agent understand fallback behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise at 6 sentences, front-loaded with the main purpose, then a parameter list with examples, and finally an edge-case behavior. Every sentence adds value without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only preview tool with 4 parameters and no output schema, the description covers parameters, fallback behavior, and usage context. It could mention that the content is raw markdown, but that is implied by 'reads skill file content.' Overall, it is sufficiently complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so baseline is 3. The description adds concrete examples for each parameter (e.g., 'owner: GitHub username/org (e.g., "anthropics")' and path examples), which adds meaning beyond the schema's basic descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states it reads skill file content (SKILL.md) from a GitHub repository for previewing before installation. The verb 'read' and resource 'skill file content' are specific, and the context 'from a GitHub repository' is unambiguous. It distinguishes from sibling tools like install and list.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states 'Use to preview a skill before installing,' which provides clear when-to-use guidance. Sibling tools like install and list are implied alternatives, but no explicit when-not-to-use or exclusions are given.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

skillsmp_install_skillInstall SkillA

Install skills from GitHub to AI coding agents.

Parameters:

  • source: GitHub "owner/repo" (e.g., "anthropics/claude-code") [REQUIRED]

  • skills: Skill names, comma-separated (e.g., "frontend-design,backend-dev") [REQUIRED]

  • agents: Target agents, comma-separated [REQUIRED] Valid: claude-code, cursor, codex, opencode, antigravity, github-copilot, roo

  • global: Install user-level instead of project-level (default: false)

Example: source="anthropics/claude-code", skills="frontend-design", agents="claude-code"

ParametersJSON Schema
NameRequiredDescriptionDefault
sourceYesGitHub shorthand 'owner/repo' (e.g., 'davila7/claude-code-templates'), full GitHub URL, or local path
skillsYesSkill names to install (comma-separated: 'skill1,skill2' or array). REQUIRED.
agentsYesTarget agents (comma-separated: 'claude-code,cursor'). Valid: opencode, claude-code, codex, cursor, antigravity, github-copilot, roo. REQUIRED.
globalNoInstall globally (user-level) instead of project-level (default: false)

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate readOnlyHint=false, so the description correctly implies a write operation. It adds details about installation scope (project vs global) but does not mention side effects like overwriting existing skills or required permissions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise with a front-loaded purpose, followed by parameter details and an example. Every sentence adds value without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 4 parameters and no output schema, the description provides adequate purpose, parameter details, and an example. It lacks information on return values or error handling, but is otherwise complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description rephrases parameters and adds an example but does not significantly extend meaning beyond the schema descriptions (e.g., valid agents are listed in schema too).

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Install skills from GitHub to AI coding agents,' which is a specific verb-resource pair. It distinguishes from sibling tools like skillsmp_ai_search or skillsmp_get_skill_content by focusing on installation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explains parameters and provides an example but does not explicitly state when to use this tool versus alternatives or when not to use it. Usage is implied but not formally guided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

skillsmp_list_repo_skillsList Repository SkillsA
Read-onlyIdempotent

List all available skills in a GitHub repository without installing.

Parameters:

  • source: GitHub shorthand "owner/repo" (e.g., "anthropics/claude-code")

Returns skill names and descriptions found in the repository.

ParametersJSON Schema
NameRequiredDescriptionDefault
sourceYesGitHub shorthand 'owner/repo' (e.g., 'davila7/claude-code-templates') or full GitHub URL

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare read-only, non-destructive, idempotent, and open-world. Description adds that it returns skill names and descriptions, providing useful behavioral detail beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Short and to the point, but the parameter list duplicates schema info, slightly reducing conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple list tool with comprehensive annotations, the description fully covers purpose, parameter, and return content. No gaps identified.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with a clear description for the source parameter. The description provides an example (anthropics/claude-code) but doesn't add significant new meaning.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states the action (list), resource (skills in a repository), and a key distinction (without installing). Differentiates from sibling install_skill.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Implicitly suggests use when exploring repository skills before installation, but lacks explicit when-to-use versus alternatives like search.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

A4.1/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: semantic search, content reading, installation, repo listing, and keyword search. No overlap.

Naming Consistency5/5

All tools use the 'skillsmp_' prefix followed by a verb_noun pattern (ai_search, get_skill_content, install_skill, list_repo_skills, search), creating a predictable and clear naming convention.

Tool Count5/5

Five tools is an ideal size for a skills marketplace MCP server, covering the core workflow of discovery, preview, and installation without being excessive.

Completeness4/5

The tool set covers the essential lifecycle (search, preview, install) for skills. Missing uninstall or update tools, but these are secondary to the primary use case.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    F
    maintenance
    MCP server for discovering and installing AI agent skills from agentskill.sh. Search skills across platforms, browse trending skills, and install them with built-in security scanning.
    4
    13
    3
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    A powerful MCP server that brings the skills.sh ecosystem directly to your AI agents, enabling effortless discovery, installation, and management of skills.
    1
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    A lightweight MCP server that enables AI assistants to search and read skills from the SkillsMP marketplace with optional security scanning.
    3
    46
    1
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/anilcancakir/skillsmp-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server