Skip to main content

MCP server that exposes Claude-style skills to any MCP client.

Project description

Skillz

๐Ÿ‘Œ Use skills in any agent (Codex, Copilot, Cursor, etc...)

PyPI version PyPI downloads

โš ๏ธ 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.

Quick Start

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"
    ]
  }
}

Usage

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
โ””โ”€โ”€ data-cleaner/
    โ”œโ”€โ”€ SKILL.md
    โ””โ”€โ”€ clean.py

Directory Structure: Skillz vs Claude Code

Skillz supports a more flexible skills directory than Claude Code. In addition to a flat layout, you can organize skills in nested subdirectories and include skills packaged as .zip or .skill files (as shown in the examples above).

Claude Code, on the other hand, expects a flat skills directory: every immediate subdirectory is a single skill. Nested directories are not discovered, and .zip or .skill files are not supported.

If you want your skills directory to be compatible with Claude Code (for example, so you can symlink one skills directory between the two tools), you must use the flat layout.

Claude Codeโ€“compatible layout:

skills/
โ”œโ”€โ”€ hello-world/
โ”‚   โ”œโ”€โ”€ SKILL.md
โ”‚   โ””โ”€โ”€ run.sh
โ””โ”€โ”€ summarize-text/
    โ”œโ”€โ”€ SKILL.md
    โ””โ”€โ”€ run.py

Skillz-only layout examples (not compatible with Claude Code):

skills/
โ”œโ”€โ”€ text-tools/
โ”‚   โ””โ”€โ”€ summarize-text/
โ”‚       โ”œโ”€โ”€ SKILL.md
โ”‚       โ””โ”€โ”€ run.py
โ”œโ”€โ”€ image-processing.zip
โ””โ”€โ”€ data-analyzer.skill

You can use skillz --list-skills (optionally pointing at another skills root) to verify which skills the server will expose before connecting it to your agent.

CLI Reference

skillz [skills_root] [options]

Flag / Option Description
positional skills_root Optional skills directory (defaults to ~/.skillz).
--transport {stdio,http,sse} Choose the FastMCP transport (default stdio).
--host HOST Bind address for HTTP/SSE transports.
--port PORT Port for HTTP/SSE transports.
--path PATH URL path when using the HTTP transport.
--list-skills List discovered skills and exit.
--verbose Emit debug logging to the console.
--log Mirror verbose logs to /tmp/skillz.log.

Made with ๐Ÿซถ by @intellectronica

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

skillz-0.1.14.tar.gz (14.5 kB view details)

Uploaded Source

Built Distribution

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

skillz-0.1.14-py3-none-any.whl (15.6 kB view details)

Uploaded Python 3

File details

Details for the file skillz-0.1.14.tar.gz.

File metadata

  • Download URL: skillz-0.1.14.tar.gz
  • Upload date:
  • Size: 14.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for skillz-0.1.14.tar.gz
Algorithm Hash digest
SHA256 cbde2c2d48f638dea20701493417257d70ed4fa4333bc1a2fef968f5b648c7ed
MD5 8d466c0cb21b2769e4f897a3c00f775e
BLAKE2b-256 df9ea7493e31623ae11d080d37937d63bcb95bdde1136c4f68980b8689b9a406

See more details on using hashes here.

Provenance

The following attestation bundles were made for skillz-0.1.14.tar.gz:

Publisher: publish.yml on intellectronica/skillz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file skillz-0.1.14-py3-none-any.whl.

File metadata

  • Download URL: skillz-0.1.14-py3-none-any.whl
  • Upload date:
  • Size: 15.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for skillz-0.1.14-py3-none-any.whl
Algorithm Hash digest
SHA256 a411d48d4362a84888a0e08046448e21632d41314d5975432367ca293c919a5e
MD5 6c99a27feac1942622cab1e971e4c8db
BLAKE2b-256 f88d5a8f647de83597cc34944f091cad82fa784c89413eef11f3a5f46874e2f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for skillz-0.1.14-py3-none-any.whl:

Publisher: publish.yml on intellectronica/skillz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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