MCP.so
Sign In

Skillhub Mcp

@214140846

About Skillhub Mcp

No overview available yet

Basic information

Category

Other

License

MIT

Runtime

python

Transports

stdio

Publisher

214140846

Submitted by

cupid z

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "skillhub-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "skillhub-mcp@latest",
        "/path/to/skills"
      ]
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is Skillhub MCP?

Skillhub MCP is an MCP server that converts Claude-style skills (defined with SKILL.md) into MCP tools and resources, enabling any MCP client to call the same skills. It is designed for teams and individuals who want to reuse skills across multiple MCP clients (e.g., Cursor, Claude Code, Codex) and prefer flexible skill packaging.

How to use Skillhub MCP?

Install the server via uvx skillhub-mcp@latest, optionally providing a custom skills root directory. Then configure it as an MCP server in your client’s settings (e.g., ~/.cursor/mcp.json, claude mcp add, or ~/.codex/config.toml). The server discovers skills from the root directory and exposes them as MCP tools and resources.

Key features of Skillhub MCP

  • Cross-client reuse: install once, use from any MCP client
  • Flexible packaging: nested directories, .zip, and .skill archives
  • Skill resources: expose scripts, datasets, examples as MCP resources
  • Resource fallback: a fetch_resource tool for clients without native MCP resource support
  • Multiple transports: stdio (default), http, and sse
  • Lightweight: no script execution; the client decides whether to run scripts

Use cases of Skillhub MCP

  • Turn existing Claude-style skills into tools for Cursor, Claude Code, or Codex
  • Organize and share skills with nested folders and zip/archive packaging
  • Expose skill-related scripts and data as MCP resources for agent reading
  • Reuse the same skills across multiple team agents without duplication

FAQ from Skillhub MCP

Is Skillhub MCP an MCP server or an MCP client?

It is an MCP server. It runs as a server process and exposes tools and resources to MCP clients.

How does Skillhub MCP differ from Claude Code’s skills directory?

Claude Code expects a flat skills directory (each immediate subdirectory is one skill). Skillhub MCP allows nested directories and supports .zip/.skill packaged skills.

What transport options does Skillhub MCP support?

It supports stdio (default), http, and sse transports, configurable via the --transport flag.

Does Skillhub MCP execute scripts inside skills?

No. Skillhub MCP does not run scripts; the client decides whether and how to execute them. Skills may contain scripts and arbitrary files, so treat them as untrusted and run in sandboxes/containers.

Where does Skillhub MCP look for skills by default?

The default skills root is ~/.skillhub-mcp. You can override it by passing a path as a positional argument.

Comments

More Other MCP servers