MCP Catalogs
Home

skillz

by intellectronica·394·Score 49

MCP server for loading Claude-style skills as tools in any MCP client.

developer-toolsai-llmproductivity
35
Forks
3
Open issues
4 mo ago
Last commit
2d ago
Indexed

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:

you:Adding Claude skills to non-Claude AI agents like Codex, Copilot, and Cursor
you:Creating a skills marketplace and directory system (Skills Supermarket)
you:Extending Gemini CLI with Anthropic-style agent skills
you:What skills formats are supported?
you:Is Skillz compatible with Claude Code?
you:Where can I find skills to use with Skillz?

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

claude-codemcp-server-kitllama-agents

Installation

Install Skillz via PyPI and configure your MCP client:

pip install skillz

For 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.

Compare skillz with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.