CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Skillflow

rafsilva85/skillflow-mcp-server
15 toolsSTDIOregistry active
Summary

Connects your AI agent directly to the SkillFlow marketplace API and lets you search, filter, and evaluate 500+ AI skills with real-time performance metrics. Exposes five tools: search by keyword or category, pull detailed skill info including pricing and success rates, list trending skills, browse categories, and check platform-wide stats. Live data with 5-minute caching, zero config required. Works over stdio for local Claude Desktop and Cursor setups, or run it as an HTTP server for remote access through Smithery or custom deployments. Reach for this when you want your agent to programmatically discover and assess AI skills instead of manually browsing a marketplace.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Tools

Public tool metadata for what this MCP can expose to an agent.

5 tools
search_skillsSearch for AI agent skills on SkillFlow marketplace by keyword, category, or tag3 params

Search for AI agent skills on SkillFlow marketplace by keyword, category, or tag

Parameters* required
querystring
Search query
categorystring
Filter by category
min_trust_scorenumber
Minimum trust score (0-100)
get_skill_detailsGet detailed information about a specific skill1 params

Get detailed information about a specific skill

Parameters* required
skill_idstring
The skill ID
list_categoriesList all available skill categories on SkillFlow

List all available skill categories on SkillFlow

No parameter schema in public metadata yet.

get_trending_skillsGet currently trending skills on SkillFlow marketplace1 params

Get currently trending skills on SkillFlow marketplace

Parameters* required
limitnumber
Maximum results (default: 5)
get_publisher_infoGet information about a skill publisher1 params

Get information about a skill publisher

Parameters* required
publisher_idstring
Publisher username

SkillFlow MCP Server

npm version npm downloads MCP Registry License: MIT Available on SkillFlow

Connect AI coding agents to the SkillFlow AI skills marketplace. Live data. Zero config. One command.

A Model Context Protocol (MCP) server that connects AI coding agents to the SkillFlow marketplace — a curated AI skills marketplace with trust metrics and performance data.

Why SkillFlow?

AI agents are the new users. Instead of browsing a website, agents can now programmatically search, discover, and evaluate skills from SkillFlow using the MCP protocol.

"It's 2026. Build. For. Agents." — Andrej Karpathy

Key benefits:

  • Live API — real-time data from the SkillFlow backend, not hardcoded
  • Curated skills across 6 business categories with performance metrics
  • Trust metrics — success rates, run counts, ratings, and speed benchmarks
  • Zero config — no API keys, no environment variables, just npx
  • Works everywhere — Claude Desktop, Cursor, Windsurf, Copilot, Gemini CLI, and any MCP-compatible agent

Transports

This server supports two transports:

TransportUse CaseCommand
stdioLocal use with Claude Desktop, Cursor, etc.npx skillflow-mcp-server
Streamable HTTPRemote access via Smithery.ai, cloud agentsskillflow-mcp-http or npm start:http

Quick Start (stdio — Local)

One-liner (npx)

npx skillflow-mcp-server

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"]
    }
  }
}

Windsurf / VS Code / Other MCP Clients

{
  "mcpServers": {
    "skillflow": {
      "command": "npx",
      "args": ["-y", "skillflow-mcp-server"]
    }
  }
}

Global Installation

npm install -g skillflow-mcp-server
skillflow-mcp

Available Tools

ToolDescription
search_skillsSearch for skills by keyword, category, or tag
get_skill_detailsGet detailed info about a specific skill including pricing and performance
list_categoriesList all skill categories
get_trending_skillsGet currently trending skills
get_platform_statsGet overall platform statistics (skills, runs, creators, revenue)

Examples

Once connected, ask your AI agent:

  • "Search for skills that help with SEO content"
  • "What are the trending skills on SkillFlow?"
  • "Get details about the blog-seo-writer skill"
  • "List all skill categories"
  • "Show me the platform stats"
  • "Find skills for lead generation"

Quick Start (Streamable HTTP — Remote)

Self-hosted

npm install -g skillflow-mcp-server
PORT=3000 skillflow-mcp-http

Docker

docker build -t skillflow-mcp .
docker run -p 3000:3000 skillflow-mcp

Smithery.ai

Available at: smithery.ai/server/skillflow-mcp-server

HTTP API Endpoints

MethodPathDescription
POST/mcpSend JSON-RPC requests (initialize, tools/list, tools/call)
GET/mcpOpen SSE stream for server notifications
DELETE/mcpTerminate a session
GET/healthHealth check (includes live skill count)

Architecture

┌─────────────┐     MCP Protocol     ┌──────────────────┐     tRPC API     ┌──────────────┐
│  AI Agent   │ ◄──────────────────► │ SkillFlow MCP    │ ◄──────────────► │  SkillFlow   │
│ (Claude,    │  stdio / HTTP+SSE    │ Server           │   (live data)    │  Backend     │
│  Cursor...) │                       └──────────────────┘                  └──────────────┘
└─────────────┘

The MCP server acts as a bridge between AI coding agents and the SkillFlow marketplace. It fetches real-time data from the SkillFlow backend API with 5-minute caching for optimal performance.

Listed On

  • Official MCP Registry (Anthropic)
  • npm
  • MCP Market
  • mcpservers.org
  • Glama.ai
  • Smithery.ai

Development

git clone https://github.com/rafsilva85/skillflow-mcp-server.git
cd skillflow-mcp-server
npm install
npm run build
npm start

Contributing

Contributions welcome! Please open an issue or submit a PR.

License

MIT — Rafael Silva


Built with the MCP SDK | Powered by SkillFlow

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
AI & LLM ToolsSearch & Web Crawling
Registryactive
Packageskillflow-mcp-server
TransportSTDIO
UpdatedMar 26, 2026
View on GitHub

Related AI & LLM Tools MCP Servers

View all →
SkillFM LLM Cost Optimizer

io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage

LLM cost optimizer for OpenAI, Anthropic, token usage, BYOK, and SkillFM Beacon audits.
Llm Orchestration Agent

io.github.mikerawsonnz/llm-orchestration-agent

Run a prompt through a LangChain (system + human) chain over Gemini on Vertex AI; optional LangSmith
Authenticated Llm Agent

io.github.mikerawsonnz/authenticated-llm-agent

JWT-gated LLM gateway: authenticate (bcrypt/JWT), then run a LangChain-on-Vertex Gemini completion.
Copilot Memory MCP

labforgedev/copilot-memory-mcp

Persistent semantic memory for AI agents using local ChromaDB vector search. No cloud required.
1
Agent Prompt Injection Firewall Mcp

csoai-org/agent-prompt-injection-firewall-mcp

The WAF for agents. Pattern-based + heuristic firewall scans prompts, RAG documents, tool argume...
Authenticated Multi Llm Agent

io.github.mikerawsonnz/authenticated-multi-llm-agent

Google-OAuth-gated LLM gateway: verify a Google ID token, then run a Gemini (Vertex AI) completion f