Skip to main content

Turn any AI agent into a specialist - A Model Context Protocol server for modular skills

Project description

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.

Skill MCP Server

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.


๐ŸŽฌ Demo

Demo Video

๐Ÿ’ก 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.md format and scripts/, references/ resource directories
  • ๐Ÿ“‚ Workspace Isolation: Supports --workspace parameter 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:

  1. ๐Ÿ” list_skills: List all available skills
  2. ๐Ÿ“š skill: Load a specific skill to get detailed instructions from its SKILL.md
  3. ๐Ÿ“„ skill_resource: Read reference documents or templates from skill packages
  4. โ–ถ๏ธ skill_script: Execute scripts bundled with skills in a secure environment
  5. ๐Ÿ“– file_read: Read files from the specified workspace
  6. โœ๏ธ file_write: Write files to the specified workspace
  7. โœ๏ธ 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

๐Ÿ› ๏ธ 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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

iflow_mcp_ephemeraldew_skill_mcp-0.1.0.tar.gz (50.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file iflow_mcp_ephemeraldew_skill_mcp-0.1.0.tar.gz.

File metadata

  • Download URL: iflow_mcp_ephemeraldew_skill_mcp-0.1.0.tar.gz
  • Upload date:
  • Size: 50.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for iflow_mcp_ephemeraldew_skill_mcp-0.1.0.tar.gz
Algorithm Hash digest
SHA256 81778258cf37ccd101e7cceafba4f5137e706bb11ece3ee5e2ad7fea3a910ae3
MD5 44dec0c837a9ace26428b9587ac9a94a
BLAKE2b-256 770ad6ff7fac399facc90feb40145971d327a595ad9929393b613dac4e5ba232

See more details on using hashes here.

File details

Details for the file iflow_mcp_ephemeraldew_skill_mcp-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: iflow_mcp_ephemeraldew_skill_mcp-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 46.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for iflow_mcp_ephemeraldew_skill_mcp-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 cc09638ed4a857e8f999a7843346dd1b8839093683324cd67f984610792cad6c
MD5 a8edb85291ea955f6f14150739c59226
BLAKE2b-256 0da36a3f2bafccb5eacb894566678931a04a7fdf9efbac932b154422325df62a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page