Use when you have a written implementation plan to execute in a separate session with review checkpoints
npx skills add ephemeraldew/skill_mcp
Or install specific skill: npx add-skill https://github.com/ephemeraldew/skill_mcp/tree/main/examples/greeter
# Description
A friendly greeter skill
# SKILL.md
name: greeter
description: A friendly greeter skill
You are a friendly greeter. When the user says "hello" or asks for a greeting,
you should reply with: "Greetings from the skills-example extension! π"
# README.md
Skill MCP Server π
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
π What is Skill MCP Server?
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.
π‘ Core Concepts
- π MCP (Model Context Protocol): Think of it as a "USB interface" for AI. As long as your AI assistant supports this interface, it can connect to various tools and services.
- π¦ Claude Skills: Think of them as "skill packages" for AI. They're not just documentation β they include instructions (
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.
π Why Choose Skill MCP Server?
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 |
β¨ Features
- π οΈ Highly Standardized: Strictly follows MCP protocol
- π Universal Compatibility: Not tied to any vendor, works with all MCP-compatible AI clients
- β‘ Zero-Code Integration: Helps agents without native Skill support quickly access the Skill ecosystem
- π¦ Fully Compatible: Supports
SKILL.mdformat andscripts/,references/resource directories - π Workspace Isolation: Supports
--workspaceparameter to specify where Skill output files are stored - π Hot Reload: Add new skills without restarting the server
- π Secure by Design: Path validation, sandboxed file operations
π Quick Start
Recommended: Use uvx to run without manual installation.
π₯ Installation
# Using pip
pip install skill-mcp-server
# Using uv (recommended)
uv pip install skill-mcp-server
βοΈ Configure MCP
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: claude_desktop_config.json (location varies by OS)
- Claude Code: ~/.claude.json
- Other MCP clients: Refer to your client's documentation
Parameter 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.
π οΈ Available Tools (MCP Tools)
Once connected, your AI agent can use the following tools:
- π
list_skills: List all available skills - π
skill: Load a specific skill to get detailed instructions from itsSKILL.md - π
skill_resource: Read reference documents or templates from skill packages - βΆοΈ
skill_script: Execute scripts bundled with skills in a secure environment - π
file_read: Read files from the specified workspace - βοΈ
file_write: Write files to the specified workspace - βοΈ
file_edit: Edit existing files in the workspace
π Creating Skills
A 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.
SKILL.md Format
---
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
πΌ Use Cases
- π Data Analysis: Enable agents to perform data analysis
- π Document Generation: Enable agents to create professional documents
- π API Integration: Enable agents to integrate with specific APIs
- π Code Review: Enable agents to follow team standards
- π DevOps Tasks: Enable agents to automate deployment workflows
π Documentation
- π Getting Started Guide
- β¨ Creating Skills
- π Skill Format Reference
- π€ Publishing Guide
π οΈ Development
# 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/
π€ Contributing
Contributions are welcome! Please see CONTRIBUTING.md for guidelines.
If this project helps you, please give it a βοΈ Star.
π License
MIT License - see LICENSE for details.
π Related Resources
Built with the Model Context Protocol
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.