AgentHubAgentHub

MCP Skills Server

MCP ServerMCP Registry官方收录

io.github.srprasanna/mcp-skill-hub · v1.0.0

MCP server that loads and serves skills from a mounted directory with hot reload.

概览

MCP Skills Server 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "mcp-skill-hub": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "docker.io/srprasanna/mcp-skill-hub:1.0.0"
      ]
    }
  }
}

环境变量

MCP_SKILLS_DIR可选

Root directory containing skill folders

MCP_SKILLS_HOT_RELOAD可选

Enable automatic reloading when SKILL.md files change

MCP_SKILLS_LOG_LEVEL可选

Logging verbosity: DEBUG, INFO, WARNING, ERROR, CRITICAL

相关资源

统一 Manifest

{
  "id": "io.github.srprasanna/mcp-skill-hub",
  "type": "mcp-server",
  "version": "1.0.0",
  "displayName": "MCP Skills Server",
  "description": "MCP server that loads and serves skills from a mounted directory with hot reload.",
  "repository": {
    "url": "https://github.com/srprasanna/mcp-skill-hub",
    "source": "github"
  },
  "homepage": "https://srprasanna.github.io/mcp-skill-hub",
  "distribution": {
    "packages": [
      {
        "registryType": "oci",
        "identifier": "docker.io/srprasanna/mcp-skill-hub:1.0.0",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "MCP_SKILLS_DIR",
            "description": "Root directory containing skill folders"
          },
          {
            "name": "MCP_SKILLS_HOT_RELOAD",
            "description": "Enable automatic reloading when SKILL.md files change"
          },
          {
            "name": "MCP_SKILLS_LOG_LEVEL",
            "description": "Logging verbosity: DEBUG, INFO, WARNING, ERROR, CRITICAL"
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.srprasanna/mcp-skill-hub",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.srprasanna%2Fmcp-skill-hub/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
MCP Skills Server — MCP Server 安装与配置 · AgentHub