Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@SkillFlow MCP Serversearch for skills that help with Docker configuration"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
SkillFlow MCP Server
A Model Context Protocol (MCP) server that connects AI coding agents to the SkillFlow marketplace. Search, discover, and install AI agent skills directly from Claude, Cursor, Copilot, Gemini CLI, and more.
Why?
AI agents are the new users. Instead of browsing a website, agents can now programmatically search and install skills from SkillFlow using the MCP protocol.
"It's 2026. Build. For. Agents." — Andrej Karpathy
Quick Start
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"skillflow": {
"command": "npx",
"args": ["-y", "skillflow-mcp-server"]
}
}
}Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"skillflow": {
"command": "npx",
"args": ["-y", "skillflow-mcp-server"]
}
}
}Manual Installation
npm install -g skillflow-mcp-server
skillflow-mcpAvailable Tools
Tool | Description |
| Search for skills by keyword, category, or tag |
| Get detailed info about a specific skill |
| List all skill categories |
| Get currently trending skills |
| Get info about a skill publisher |
Examples
Once connected, you can ask your AI agent:
"Search for skills that help with Docker configuration"
"What are the trending skills on SkillFlow?"
"Get details about the credit-optimizer-v5 skill"
"List all skill categories"
"Show me skills by publisher rafsilva85"
Development
git clone https://github.com/rafsilva85/skillflow-mcp-server.git
cd skillflow-mcp-server
npm install
npm run build
npm startHow It Works
┌─────────────┐ MCP Protocol ┌──────────────────┐ API ┌──────────────┐
│ AI Agent │ ◄──────────────────► │ SkillFlow MCP │ ◄─────────► │ SkillFlow │
│ (Claude, │ stdio transport │ Server │ │ Marketplace │
│ Cursor...) │ └──────────────────┘ └──────────────┘
└─────────────┘The MCP server acts as a bridge between AI coding agents and the SkillFlow marketplace, translating natural language requests into structured skill data.
License
MIT — Rafael Silva