CCM
/MCP
SkillsMCPMarketplacesDigestLearnAdvertise

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

Claude Code Marketplaces

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
  • Learn
  • Feedback
  • Privacy Policy
  • Advertise

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

Independent project, not affiliated with Anthropic

Claude Skills

k-dense-ai/claude-skills-mcp
384
Summary

The Claude Skills MCP server provides intelligent search and discovery of Claude Agent Skills using vector embeddings and semantic similarity, enabling any MCP-compatible AI assistant to access curated skills from repositories like Claude Scientific Skills and Official Claude Skills. It implements Anthropic's progressive disclosure architecture to make specialized skills available across the AI ecosystem without requiring native integration into individual platforms. The server is no longer actively maintained, as major AI platforms including Cursor, Windsurf, and Claude Code have natively adopted skills support.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
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 →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
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 →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →

Claude Skills MCP Server

This MCP server is no longer hosted or maintained. Agent Skills have been natively adopted by all major AI platforms — Cursor, Windsurf, Claude Code, Copilot, and others now support skills out of the box. There is no longer a need for an MCP bridge to deliver skills to your coding assistant. Thank you to everyone who used and contributed to this project!


Tests Python 3.12 License Code style: ruff PyPI version

Use Claude's powerful new Skills system with ANY AI model or coding assistant - including Cursor, Codex, GPT-5, Gemini, and more. This MCP server brings Anthropic's Agent Skills framework to the entire AI ecosystem through the Model Context Protocol.

A Model Context Protocol (MCP) server that provides intelligent search capabilities for discovering relevant Claude Agent Skills using vector embeddings and semantic similarity. This server implements the same progressive disclosure architecture that Anthropic describes in their Agent Skills engineering blog, making specialized skills available to any MCP-compatible AI application.

An open-source project by K-Dense AI - creators of autonomous AI scientists for scientific research.

This MCP server enables any MCP-compatible AI assistant to intelligently search and retrieve skills from our curated Claude Scientific Skills repository and other skill sources like the Official Claude Skills.

Install MCP Server

Demo

Claude Skills MCP in Action

Semantic search and progressive loading of Claude Agent Skills in Cursor

Highlights

  • Two-Package Architecture: Lightweight frontend (~15 MB) starts instantly; backend (~250 MB) downloads in background
  • No Cursor Timeout: Frontend responds in <5 seconds, solving the timeout issue
  • Semantic Search: Vector embeddings for intelligent skill discovery
  • Progressive Disclosure: Multi-level skill loading (metadata → full content → files)
  • Zero Configuration: Works out of the box with curated skills
  • Multi-Source: Load from GitHub repositories and local directories
  • Fast & Local: No API keys needed, with automatic GitHub caching
  • Configurable: Customize sources, models, and content limits

Quick Start

For Cursor Users

Add through the Cursor Directory, or add to your Cursor config (~/.cursor/mcp.json):

{
  "mcpServers": {
    "claude-skills": {
      "command": "uvx",
      "args": ["claude-skills-mcp"]
    }
  }
}

The frontend starts instantly and displays tools, automatically downloading and starting the backend in the background (~60-120s due to RAG dependencies, one-time). Subsequent uses are instant.

Using uvx (Standalone)

Run the server with default configuration:

uvx claude-skills-mcp

This starts the lightweight frontend which auto-downloads the backend and loads ~90 skills from Anthropic's official skills repository and K-Dense AI's scientific skills collection.

With Custom Configuration

# 1. Print the default configuration
uvx claude-skills-mcp --example-config > config.json

# 2. Edit config.json to your needs

# 3. Run with your custom configuration
uvx claude-skills-mcp --config config.json

Documentation

  • Getting Started - Installation, Cursor setup, CLI usage, and troubleshooting
  • Architecture Guide - Two-package design, data flow, and components
  • API Documentation - Tool parameters, examples, and best practices
  • Usage Examples - Advanced configuration, real-world use cases, and custom skill creation
  • Testing Guide - Complete testing instructions, CI/CD, and coverage analysis

MCP Tools

The server provides three tools for working with Claude Agent Skills:

  1. find_helpful_skills - Semantic search for relevant skills based on task description
  2. read_skill_document - Retrieve specific files (scripts, data, references) from skills
  3. list_skills - View complete inventory of all loaded skills (for exploration/debugging)

See API Documentation for detailed parameters, examples, and best practices.

Architecture (v1.0.0)

The system uses a two-package architecture for optimal performance:

  • Frontend (claude-skills-mcp): Lightweight proxy (~15 MB)

    • Starts instantly (<5 seconds) ✅ No Cursor timeout!
    • Auto-downloads backend on first use
    • MCP server (stdio) for Cursor
  • Backend (claude-skills-mcp-backend): Heavy server (~250 MB)

    • Vector search with PyTorch & sentence-transformers
    • MCP server (streamable HTTP)
    • Auto-installed by frontend OR deployable standalone

Benefits:

  • ✅ Solves Cursor timeout issue (frontend starts instantly)
  • ✅ Same simple user experience (uvx claude-skills-mcp)
  • ✅ Backend downloads in background (doesn't block Cursor)
  • ✅ Can connect to remote hosted backend (no local install needed)

See Architecture Guide for detailed design and data flow.

Skill Sources

Load skills from GitHub repositories (direct skills or Claude Code plugins) or local directories.

By default, loads from:

  • Official Anthropic Skills - 15 diverse skills for documents, presentations, web artifacts, and more
  • K-Dense AI Scientific Skills - 78+ specialized skills for bioinformatics, cheminformatics, and scientific analysis
  • Local directory ~/.claude/skills (if it exists)

Contributing

Contributions are welcome! To contribute:

  1. Report issues: Open an issue for bugs or feature requests
  2. Submit PRs: Fork, create a feature branch, ensure tests pass (uv run pytest tests/), then submit
  3. Code style: Run uvx ruff check src/ before committing
  4. Add tests: New features should include tests

Development

Version Management: This monorepo uses a centralized version system:

  • Edit the VERSION file at the repo root to bump the version
  • Run python3 scripts/sync-version.py to sync all references (or use --check to verify)
  • The scripts/build-all.sh script automatically syncs versions before building

For questions, email orion.li@k-dense.ai

Join Our Community! 🚀

We'd love to have you in our Slack community! Connect with other users, share tips and tricks, get help with your skills, and be the first to know about new features and updates.

👉 Join the K-Dense Community on Slack 👈

Whether you're building custom skills, integrating with different AI models, or just exploring the possibilities of Agent Skills, our community is here to support you!

Learn More

  • Agent Skills Documentation - Official Anthropic documentation on the Skills format
  • Agent Skills Blog Post - Announcement and overview
  • Model Context Protocol - The protocol that makes cross-platform Skills possible
  • Engineering Blog: Equipping Agents for the Real World - Technical deep-dive on the Skills architecture

License

This project is licensed under the Apache License 2.0.

Copyright 2025 K-Dense AI (https://k-dense.ai)

Star History

Star History Chart

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
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 →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Categories
AI & LLM ToolsSearch & Web Crawling
UpdatedMar 10, 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