Agent Skills MCP
Enables discovery and installation of agent skills from curated GitHub repositories, allowing users to search large collections and inspect skill contents directly. It supports downloading skills locally and provides grounded scaffolds for creating new skills based on existing patterns.
Ask AI about Agent Skills MCP
Powered by Claude ยท Grounded in docs
I know everything about Agent Skills MCP. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
agent-skills-mcp - Load Agent Skills for your agents
[!WARNING] This Python implementation is deprecated. Please use the Rust implementation instead: https://github.com/DiscreteTom/agent-skills-mcp-rs
Usage
Full CLI Usage
uvx agent-skills-mcp --help
Usage: agent-skills-mcp [OPTIONS]
Agent Skills MCP - Load Agent Skills for your agents
โญโ Options โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ --skill-folder TEXT Path to folder containing skill markdown files [env var: SKILL_FOLDER] [default: skills] โ
โ --mode [tool|system_prompt] Operating mode [env var: MODE] [default: tool] โ
โ --version Show version and exit โ
โ --help Show this message and exit. โ
โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
Setup
First, put your skills in ~/skills, e.g.
git clone https://github.com/anthropics/skills.git ~/skills
The server recursively searches for SKILL.md files and follows symlinks, allowing flexible skill organization.
Then, add this to your MCP client configuration:
{
"mcpServers": {
"skills": {
"command": "uvx",
"args": ["agent-skills-mcp"],
"env": {
"SKILL_FOLDER": "~/skills"
}
}
}
}
Modes
system_prompt: Include skill information in MCP instructions (recommended if your agent regards MCP server instructions)tool: Register skills as MCP tools (fallback mode since many agents ignore MCP server instructions)
