skillz
by intellectronica·★ 394·Score 49
MCP server for loading Claude-style skills as tools in any MCP client.
Overview
Skillz is an MCP server that transforms Claude-style skills (SKILL.md plus optional resources) into callable tools for any MCP client. It discovers skills in specified directories, exposes their instructions and resources, and can run bundled helper scripts. The server supports both flat and nested directory structures, as well as zip or .skill archives for skill packaging. Despite being experimental, it provides clear documentation and multiple installation paths.
Try asking AI
After installing, here are 6 things you can ask your AI assistant:
When to choose this
Choose Skillz when you want to use Claude-style skills in non-Claude AI clients or need more flexible skill organization than Claude Code provides.
When NOT to choose this
Don't choose Skillz if you're only working within Claude's ecosystem where native skill support already exists, or if you require extensive authentication/authorization models as it's designed for local skill management.
Comparable tools
Installation
Install Skillz via PyPI and configure your MCP client:
pip install skillzFor Claude Desktop, add this to your config.json:
{
"skillz": {
"command": "uvx",
"args": ["skillz@latest"]
}
}Or using Docker for isolation:
{
"skillz": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"/path/to/skills:/skillz",
"intellectronica/skillz",
"/skillz"
]
}
}FAQ
- What skills formats are supported?
- Skillz supports skills organized in directories or packaged as .zip or .skill archives, each requiring a SKILL.md file with YAML front matter.
- Is Skillz compatible with Claude Code?
- Skillz supports both flat (Claude Code-compatible) and nested directory layouts, but only flat layouts are compatible with Claude Code.
- Where can I find skills to use with Skillz?
- You can find skills to install at the Skills Supermarket directory at http://skills.intellectronica.net/
On Hacker News
Recent discussion from the developer community.
- Story by intellectronica · 2025-10-20
Compare skillz with
Last updated · Auto-generated from public README + GitHub signals.