loading…
Search for a command to run...
loading…
A modular plugin system that allows AI agents to dynamically load and use 'skills' from local folders without code changes or restarts. It enables instant capab
A modular plugin system that allows AI agents to dynamically load and use 'skills' from local folders without code changes or restarts. It enables instant capability extension through script execution, hot reloading, and resource bundling.
Turn any AI agent into a specialist — just drop in a skill folder.
📖 What is it? • 🌟 Why Choose It? • ✨ Features • 🚀 Quick Start • 📝 Creating Skills • 📚 Documentation
Skill MCP Server is a standard Model Context Protocol (MCP) server that bridges Claude Skills to any AI agent that supports MCP.
Previously, Claude Skills were mainly used in Anthropic's official tools. If your AI application doesn't support Skills, you'd have to implement your own parsing and execution logic, which is a hassle. With this project, you can simply configure it and let any MCP-compatible Agent use standard Skill files directly.
SKILL.md), accompanying scripts (Python/JS), and reference materials.Skill MCP Server is a "converter" that helps various agents use the Skill ecosystem, enabling plug-and-play functionality.
If your Agent doesn't support Skills yet, this project can help you quickly integrate:
| Dimension | Natively Supported Agents (e.g., Claude Code) | Other Agents (with this project) |
|---|---|---|
| Access Barrier | Deep integration, usually non-portable | Low barrier, standard MCP protocol |
| Development Burden | Official implementation complete | Zero code, no need to build Skill parser |
| Flexibility | Tied to specific clients | Cross-platform, works with any MCP-compatible agent |
| Feature Parity | Full script, resource & file stream support | Perfect alignment, same dynamic execution & resource access |
SKILL.md format and scripts/, references/ resource directories--workspace parameter to specify where Skill output files are storedRecommended: Use uvx to run without manual installation.
# Using pip
pip install skill-mcp-server
# Using uv (recommended)
uv pip install skill-mcp-server
Add Skill MCP Server to your MCP client configuration. All MCP-compatible clients use the same configuration format:
Using uvx (recommended, no installation needed):
{
"mcpServers": {
"skill-server": {
"command": "uvx",
"args": [
"skill-mcp-server",
"--skills-dir", "/path/to/your/skills",
"--workspace", "/path/to/workspace"
]
}
}
}
Using local installation:
{
"mcpServers": {
"skill-server": {
"command": "python",
"args": [
"-m", "skill_mcp_server",
"--skills-dir", "/path/to/your/skills",
"--workspace", "/path/to/workspace"
]
}
}
}
Configuration file locations:
claude_desktop_config.json (location varies by OS)~/.claude.jsonParameter Explanation:
--skills-dir: Core parameter. Set to the root directory containing all Skill folders you want your agent to use.--workspace: Important parameter. Specifies where Skill execution output files (code, reports, etc.) are saved.Once connected, your AI agent can use the following tools:
list_skills: List all available skillsskill: Load a specific skill to get detailed instructions from its SKILL.mdskill_resource: Read reference documents or templates from skill packagesskill_script: Execute scripts bundled with skills in a secure environmentfile_read: Read files from the specified workspacefile_write: Write files to the specified workspacefile_edit: Edit existing files in the workspaceA standard Skill structure looks like this:
my-skills/
└── deploy-helper/ # Skill folder
├── SKILL.md # Core documentation (required)
├── scripts/ # Executable scripts
└── references/ # Reference materials
SKILL.md Example:
---
name: deploy-helper
description: Help users deploy applications to production with one click
---
# Deploy Helper Usage Guide
When users request deployment, follow these steps:
1. Use `skill_resource` to read the deployment template.
2. Modify local configuration files.
3. Call `skill_script` to execute the deployment script.
---
name: my-skill
description: Brief description of what this skill does and when to use it
---
# My Skill
## Overview
Explain what this skill enables the AI to do.
## Usage
Step-by-step instructions for the AI agent...
## Available Resources
- `scripts/process_data.py` - Process input data
- `assets/report_template.md` - Output template
# Clone the repository
git clone https://github.com/ephemeraldew/skill_mcp.git
cd skill_mcp
# Install development dependencies
uv pip install -e ".[dev]"
# Run tests
pytest
# Run linting
ruff check src/
Contributions are welcome! Please see CONTRIBUTING.md for guidelines.
If this project helps you, please give it a ⭐️ Star.
MIT License - see LICENSE for details.
Built with the Model Context Protocol
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"skill-mcp-server": {
"command": "npx",
"args": []
}
}
}