A Model Context Protocol (MCP) server for managing AI Agent Skills.
Project description
Skills MCP
The Package Manager for AI Agents.
Skills MCP connects your LLM Agent (like Claude Desktop or Claude Code) to a global registry of capabilities. It allows your Agent to autonomously discover, install, and learn new skills to solve complex tasks.
Thin MCP, Fat Agent Philosophy: This tool handles the delivery of code and instructions, empowering the Agent to execute them using its own environment (e.g.,
uv,bash).
🚀 Features
- Search: Find skills for specific tasks (e.g., "pdf", "excel", "diagram").
- Install: One-click download and installation to your local machine (
~/.skills). - Learn: Provides the Agent with the exact file structure and
SKILL.mdinstructions. - Dependency Management: Works seamlessly with
uvto let Agents self-manage Python environments without polluting your system.
📦 Installation
The recommended way to install is via uv (a fast Python package manager). It ensures the tool runs in an isolated environment.
Prerequisites
- Python 3.10+
uv(Recommended)
# 1. Install uv (if you haven't already)
curl -LsSf https://astral.sh/uv/install.sh | sh
# 2. Install Skills MCP globally
uv tool install skills-mcp
(Alternatively, you can use pip, but we strongly recommend uv to avoid dependency conflicts.)
⚙️ Configuration
🖥️ Claude Desktop (GUI)
To use Skills MCP with the Claude Desktop app, update your configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Add the following entry:
{
"mcpServers": {
"skills": {
"command": "uv",
"args": ["tool", "run", "skills-mcp"],
"env": {
"SKILLS_ROOT": "/Users/YOUR_USERNAME/.skills",
"SKILLS_REGISTRY_URL": "https://skills.leezhu.cn/api/v1"
}
}
}
}
Tip: Replace /Users/YOUR_USERNAME with your actual home directory path.
⌨️ Claude Code (CLI)
If you are using the claude command-line tool, you can install the MCP server directly via the CLI:
# Add the MCP server
claude mcp add skills -- uv tool run skills-mcp
Note on Configuration:
Claude Code inherits environment variables from your shell. To set custom configurations (like a private registry URL), export them in your shell profile (~/.zshrc or ~/.bashrc):
export SKILLS_REGISTRY_URL="https://your-private-registry.com/api/v1"
Environment Variables
| Variable | Description | Default |
|---|---|---|
SKILLS_ROOT |
Where skills are installed locally. | ~/.skills |
SKILLS_REGISTRY_URL |
The API endpoint of the skills registry. | https://skills.leezhu.cn/api/v1 |
SKILLS_API_KEY |
(Optional) Token for private registries. | None |
💡 Usage Guide (for Agents)
Once installed, you can ask Claude to do things like:
-
Discovery:
"Search for a skill that can split Excel files." (Claude calls
skills_search) -
Acquisition:
"Install the excel-pro skill." (Claude calls
skills_install) -
Execution:
"Read the instructions for excel-pro and split this file." (Claude calls
skills_get_details, reads theSKILL.md, installs dependencies viauv, and runs the script)
🛠️ Development
Setup
git clone https://github.com/leezhuuuuu/skills-mcp.git
cd skills-mcp
# Install dependencies
uv sync
Running Locally (StdIO Mode)
# Direct run
uv run skills-mcp
🤝 Contributing
We welcome contributions! Please feel free to submit a Pull Request.
- Fork the repository.
- Create your feature branch.
- Commit your changes.
- Push to the branch.
- Open a Pull Request.
📄 License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file skills_mcp-0.1.2.tar.gz.
File metadata
- Download URL: skills_mcp-0.1.2.tar.gz
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06e8981177f8ef761abf8d3ae7d9239543c57d6f89fa45b3ea40683b801516d9
|
|
| MD5 |
056af5d74288df2a8139e79c0986c76f
|
|
| BLAKE2b-256 |
b4ee327c6a56b4e1e800901242b3162c2ac1dad9922b2b3032ab012b6253a720
|
File details
Details for the file skills_mcp-0.1.2-py3-none-any.whl.
File metadata
- Download URL: skills_mcp-0.1.2-py3-none-any.whl
- Upload date:
- Size: 8.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6dec07fa6e66ee3c4bd3923f6f17f216b6548108e9b19b8b5d2a2526c6a07e3
|
|
| MD5 |
de379d82621a7dcc8f6a26f5a1f2766a
|
|
| BLAKE2b-256 |
086462122138e25ac487904858b4d7e0aa324357411b748c0b90ddfcf44d3ec7
|