claude-skills-mcp
This MCP server enables AI assistants to intelligently discover and utilize Claude Agent Skills through semantic search and progressive disclosure, making Claude's Skills system accessible to any AI model or coding assistant.
Core Capabilities:
Semantic Skill Search (
search_skills) - Find relevant Claude Agent Skills using natural language task descriptions, leveraging vector embeddings to return ranked results by relevanceDocument Retrieval (
read_skill_document) - Access specific files (scripts, data, references, assets) from skills using exact paths or glob patterns (e.g., 'scripts/*.py'), with base64 support for imagesSkill Inventory (
list_skills) - Browse complete catalog of all loaded skills with names, descriptions, sources, and document countsMulti-Source Integration - Automatically loads from official Anthropic skills (~15), K-Dense AI scientific skills (~78), and configurable local directories
Progressive Disclosure - Load skills in levels (metadata → full content → files) for efficient resource management
Domain-Specific Expertise - Access specialized skills across bioinformatics, cheminformatics, web development, data processing, API integration, and scientific analysis
Technical Features:
Fast Local Operation - Works entirely locally with no API keys required, featuring automatic GitHub caching and instant startup (<5 seconds)
Two-Package Architecture - Lightweight frontend (~15 MB) with heavy backend (~250 MB) downloading in background to avoid client timeouts
Cross-Platform Compatibility - Use with any AI model or coding assistant (Cursor, GPT, Gemini, etc.) via the Model Context Protocol
Custom Configuration - Configure skill sources, models, and content limits to suit specific needs
Enables loading and caching of Claude Agent Skills from GitHub repositories, with automatic branch fallback and API-based content retrieval
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., "@claude-skills-mcpfind skills for analyzing scientific data with Python"
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.
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. The final release (v1.1.0) remains installable from PyPI. Thank you to everyone who used and contributed to this project!
Use Claude's powerful 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 - 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 Scientific Agent Skills repository and other skill sources like the Official Claude Skills.
Demo

Semantic search and progressive loading of Claude Agent Skills in Cursor
Related MCP server: skill4agent MCP Server
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
Auto-Updating: Checks skill sources hourly and re-indexes when they change
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-mcpThis starts the lightweight frontend which auto-downloads the backend and loads 160+ skills from Anthropic's official skills repository and K-Dense's Scientific Agent 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.jsonDocumentation
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
Auto-Update Feature - Automatic hourly skill source refresh and change detection
Testing Guide - Complete testing instructions, CI/CD, and coverage analysis
MCP Tools
The server provides three tools for working with Claude Agent Skills:
find_helpful_skills- Semantic search for relevant skills based on task descriptionread_skill_document- Retrieve specific files (scripts, data, references) from skillslist_skills- View complete inventory of all loaded skills (for exploration/debugging)
See API Documentation for detailed parameters, examples, and best practices.
Architecture
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 - diverse skills for documents, presentations, web artifacts, and more
K-Dense Scientific Agent Skills - 148+ specialized skills for bioinformatics, cheminformatics, and scientific analysis
Local directory
~/.claude/skills(if it exists)
Contributing
As this project is no longer maintained, new issues and pull requests may not be reviewed. If you'd like to build on it, please fork the repository. For reference, the original workflow was:
Report issues: Open an issue for bugs or feature requests
Submit PRs: Fork, create a feature branch, ensure tests pass (
uv run pytest tests/), then submitCode style: Run
uvx ruff check src/before committingAdd tests: New features should include tests
Development
Version Management: This monorepo uses a centralized version system:
Edit the
VERSIONfile at the repo root to bump the versionRun
python3 scripts/sync-version.pyto sync all references (or use--checkto verify)The
scripts/build-all.shscript automatically syncs versions before building
For questions, email orion.li@k-dense.ai
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-2026 K-Dense (https://www.k-dense.ai)
Available Tools
3 toolslist_skillsList All Loaded SkillsA
Returns a complete inventory of all loaded skills with their names, descriptions, sources, and document counts. Use this for exploration or debugging to see what skills are available. NOTE: For finding relevant skills for a specific task, use the 'search_skills' tool instead - it performs semantic search to find the most appropriate skills for your needs.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden of behavioral disclosure. It clearly indicates this is a read operation ('Returns') and specifies the scope ('complete inventory of all loaded skills'). However, it doesn't mention potential limitations like pagination, rate limits, or authentication requirements that might be relevant for a complete behavioral understanding.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is perfectly structured in two sentences: the first states the purpose and output format, the second provides usage guidance and sibling differentiation. Every sentence adds value with zero wasted words, making it easy to parse and understand quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only tool with no parameters and no output schema, the description provides excellent context about what the tool does and when to use it. The main gap is the lack of information about the return format structure, which would be helpful since there's no output schema. However, given the tool's simplicity, the description is largely complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0 parameters and 100% schema coverage, the baseline would be 4. The description appropriately acknowledges this by not discussing parameters at all, focusing instead on the tool's purpose and usage guidelines. This is efficient and avoids redundancy.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific verb ('Returns') and resource ('complete inventory of all loaded skills'), listing the exact data fields included (names, descriptions, sources, document counts). It explicitly distinguishes this from its sibling 'search_skills' by stating this is for exploration/debugging rather than task-specific relevance.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance on when to use this tool ('for exploration or debugging to see what skills are available') and when not to use it, naming the alternative tool 'search_skills' for finding relevant skills for specific tasks. This gives clear context for tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
read_skill_documentRead Skill DocumentA
Retrieve specific documents (scripts, references, assets) from a skill. Use this after searching for skills to access additional resources like Python scripts, example data files, reference materials, or images. Supports pattern matching to retrieve multiple files at once (e.g., 'scripts/*.py' for all Python scripts).
| Name | Required | Description | Default |
|---|---|---|---|
| document_path | No | Path or pattern to match documents. Examples: 'scripts/example.py', 'scripts/*.py', 'references/*', 'assets/diagram.png'. If not provided, returns a list of all available documents. | |
| include_base64 | No | For images: if True, return base64-encoded content; if False, return only URL. Default: False (URL only for efficiency) | |
| skill_name | Yes | Name of the skill (as returned by search_skills) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It describes pattern matching capabilities and the base64 encoding option for images, which are useful behavioral details. However, it doesn't mention error conditions, rate limits, authentication requirements, or what happens when no documents match the pattern.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is efficiently structured with two sentences that each serve clear purposes: the first states the core function, the second provides usage context and behavioral details. There's no wasted language, and important information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 3 parameters, 100% schema coverage, and no output schema, the description provides adequate context about what the tool does and when to use it. However, without annotations or output schema, it could benefit from more information about return formats (beyond the base64 mention), error handling, or performance characteristics.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, so the schema already documents all three parameters thoroughly. The description adds some context about what types of documents can be retrieved (scripts, references, assets) and mentions pattern matching, but doesn't provide additional parameter semantics beyond what's in the schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Retrieve specific documents') and resources ('scripts, references, assets') from a skill. It distinguishes from sibling tools like 'list_skills' and 'search_skills' by focusing on accessing document content rather than listing or searching skills themselves.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance on when to use this tool ('Use this after searching for skills to access additional resources') and includes examples of what types of resources it handles (Python scripts, data files, reference materials, images). It clearly positions this as a follow-up to search operations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_skillsClaude Agent Skills SearchA
Search and discover proven Claude Agent Skills that provide expert guidance for your tasks. Use this tool whenever you're starting a new task, facing a coding challenge, or need specialized techniques. Returns highly relevant skills with complete implementation guides, code examples, and best practices ranked by relevance. Each result includes detailed step-by-step instructions you can follow immediately. Essential for leveraging battle-tested patterns, avoiding common pitfalls, and accelerating development with proven solutions. Perfect for finding reusable workflows, debugging strategies, API integration patterns, data processing techniques, and domain-specific methodologies.
| Name | Required | Description | Default |
|---|---|---|---|
| list_documents | No | Include a list of available documents (scripts, references, assets) for each skill (default: True) | |
| task_description | Yes | Description of the task you want to accomplish. Be specific about your goal, context, or problem domain for better results (e.g., 'debug Python API errors', 'process genomic data', 'build React dashboard') | |
| top_k | No | Number of skills to return (default: 3). Higher values provide more options but may include less relevant results. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden. It discloses that results are 'ranked by relevance' and include 'complete implementation guides, code examples, and best practices' which adds behavioral context beyond basic search. However, it doesn't mention rate limits, authentication requirements, error conditions, or pagination behavior that would be important for a search tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately front-loaded with core functionality but contains some redundant phrasing ('proven solutions' vs 'battle-tested patterns'). Sentences like 'Essential for leveraging battle-tested patterns...' and 'Perfect for finding reusable workflows...' could be more concise while maintaining value. The structure flows logically but could be tighter.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a search tool with 3 parameters, 100% schema coverage, but no annotations or output schema, the description provides adequate context about what the tool does and when to use it. However, it lacks details about the return format structure, error handling, or performance characteristics that would be helpful given the absence of an output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already fully documents all three parameters. The description doesn't add any additional parameter semantics beyond what's in the schema. It mentions 'returns highly relevant skills' which aligns with the task_description parameter but doesn't provide extra guidance on parameter usage or interactions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose as searching and discovering Claude Agent Skills with specific outputs (implementation guides, code examples, best practices). It distinguishes from 'list_skills' by emphasizing search functionality and from 'read_skill_document' by returning multiple ranked results rather than reading a single document. However, it doesn't explicitly name these siblings for full differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use the tool ('starting a new task, facing a coding challenge, or need specialized techniques') and includes examples of appropriate use cases. It doesn't explicitly state when NOT to use it or name alternative tools, but the context strongly implies this is for discovery/search rather than listing or reading specific documents.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool has a clearly distinct purpose: list_skills provides an inventory, search_skills performs semantic search for task relevance, and read_skill_document retrieves specific documents. The descriptions explicitly differentiate them, with list_skills even noting to use search_skills for task-specific needs, eliminating overlap.
All tools follow a consistent verb_noun pattern with snake_case: list_skills, search_skills, and read_skill_document. This uniformity makes the set predictable and easy to understand, enhancing usability for agents.
With 3 tools, the count is reasonable for a skills management server, covering exploration, search, and document retrieval. It feels slightly thin but well-scoped for its purpose, as each tool serves a distinct workflow without unnecessary bloat.
The tool surface covers core workflows: inventory listing, semantic search, and document access. Minor gaps exist, such as no direct skill execution or management tools (e.g., load/unload), but agents can work around this by using retrieved documents, making it nearly complete for the domain.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Capability registry for the agentic economy. Semantic search over verified MCP server listings.
Model Context Protocol server for the Apideck Unified API. Connect any MCP-compatible agent framework to 100+ accounting systems, HRIS platforms, file storage providers, and more through one integration. More information https://www.apideck.com/mcp-server
Hosted MCP server for live public-data APIs and Skills for AI agents.
Related MCP Servers
- AlicenseNot gradedqualityNot gradedmaintenanceAn MCP server that transforms Claude-style skills and resources into callable tools for any MCP-compatible agent or client. It automatically discovers, exposes, and executes scripts from skills organized in local directories or packaged archives.
- AlicenseBqualityDmaintenanceMCP (Model Context Protocol) Server for skill4agent - Search, view, and install AI skills in AI conversations.3244MIT
- FlicenseNot gradedqualityDmaintenanceLocal MCP server that provides semantic search (RAG) over code repositories, enabling AI clients like Claude and Gemini to access project context without manual re-upload.
- AlicenseNot gradedqualityCmaintenanceMCP Memory Server for Claude Code that provides persistent context across sessions using semantic search (RAG).Apache 2.0
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/K-Dense-AI/claude-skills-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server