@skills-hub-ai/mcp
v0.1.7
Published
MCP server for skills-hub.ai — serve installed skills as prompts in any MCP-compatible AI tool
Downloads
1,027
Maintainers
Readme
@skills-hub-ai/mcp
MCP server for skills-hub.ai — serve your installed skills as prompts in Claude Code, Cursor, or any MCP-compatible tool.
Setup
Claude Code
claude mcp add skills-hub -- npx @skills-hub-ai/mcpCursor
Add to your Cursor MCP settings (~/.cursor/mcp.json):
{
"mcpServers": {
"skills-hub": {
"command": "npx",
"args": ["@skills-hub-ai/mcp"]
}
}
}Manual (any MCP client)
{
"command": "npx",
"args": ["@skills-hub-ai/mcp"]
}How It Works
The server scans these directories for installed skills:
| Tool | Directory |
| ----------- | ------------------- |
| Claude Code | ~/.claude/skills/ |
| Cursor | ~/.cursor/skills/ |
Each skill directory should contain a SKILL.md file (installed via skills-hub install <slug>).
Skills are exposed as MCP prompts — your AI tool can list and invoke them. The server caches discovered skills for 30 seconds.
Installing Skills
Use the CLI to install skills:
npx @skills-hub-ai/cli search "code review"
npx @skills-hub-ai/cli install <skill-name>