Skip to main content
Glama
anilcancakir

skillsmp-mcp-server

by anilcancakir

Server Configuration

Describes the environment variables required to run the server.

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

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
skillsmp_searchA

Search SkillsMP marketplace for AI coding skills by keywords.

Parameters:

  • query: Search terms (e.g., "fastapi", "react testing")

  • page: Page number (default: 1)

  • limit: Results per page (default: 20, max: 100)

  • sort_by: "stars" (default) or "recent"

Returns skills with name, description, author, stars, and GitHub URL.

skillsmp_ai_searchA

Semantic search for skills using natural language queries. Powered by AI to understand intent.

Use this when keywords aren't enough - describe what you want to accomplish.

Parameters:

  • query: Natural language query (e.g., "How to build REST APIs with authentication")

Examples: "tools for web scraping", "help with React testing", "automate deployments"

skillsmp_get_skill_contentA

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.

skillsmp_list_repo_skillsA

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.

skillsmp_install_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"

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.1/5.0

Scored across 5 tools

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