An MCP server for loading skills (shim for non-claude clients).
# Add to your Claude Code skills
git clone https://github.com/intellectronica/skillzβ οΈ Experimental proofβofβconcept. Potentially unsafe. Treat skills like untrusted code and run in sandboxes/containers. Use at your own risk.
Skillz is an MCP server that turns Claude-style skills (SKILL.md plus optional resources) into callable tools for any MCP client. It discovers each skill, exposes the authored instructions and resources, and can run bundled helper scripts.
π‘ You can find skills to install at the Skills Supermarket directory.
To run the MCP server in your agent, use the following config (or equivalent):
{
"skillz": {
"command": "uvx",
"args": ["skillz@latest"]
}
}
with the skills residing at ~/.skillz
or
{
"skillz": {
"command": "uvx",
"args": ["skillz@latest", "/path/to/skills/direcotry"]
}
}
or Docker
You can run Skillz using Docker for isolation. The image is available on Docker Hub at intellectronica/skillz.
To run the Skillz MCP server with your skills directory mounted using Docker, configure your agent as follows:
Replace /path/to/skills with the path to your actual skills directory. Any arguments after intellectronica/skillz in the array are passed directly to the Skillz CLI.
{
"skillz": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"/path/to/skills:/skillz",
"intellectronica/skillz",
"/skillz"
]
}
}
A Gemini CLI extension is available at intellectronica/gemini-cli-skillz.
Install it with:
gemini extensions install https://github.com/intellectronica/gemini-cli-skillz
This extension enables Anthropic-style Agent Skills in Gemini CLI using the skillz MCP server.
Skillz looks for skills inside the root directory you provide (defaults to
~/.skillz). Each skill lives in its own folder or zip archive (.zip or .skill)
that includes a SKILL.md file with YAML front matter describing the skill. Any
other files in the skill become downloadable resources for your agent (scripts,
datasets, examples, etc.).
An example directory might look like this:
~/.skillz/
βββ summarize-docs/
β βββ SKILL.md
β βββ summarize.py
β βββ prompts/example.txt
βββ translate.zip
βββ analyzer.skill
βββ web-search/
βββ SKILL.md
When packaging skills as zip archives (.zip or .skill), include the SKILL.md
either at the root of the archive or inside a single top-level directory:
translate.zip
βββ SKILL.md
βββ helpers/
βββ translate.js
data-cleaner.zip
βββ...