Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

A unified skill management and distribution hub that aggregates local skill folders and exposes them via MCP protocol to AI platforms, featuring lazy loading and hot reloading.

README.md

Skills Router 🚀

Skills Router 是一个基于 Model Context Protocol (MCP) 的统一技能管理与分发中心。它可以将本地的 Skill 文件夹聚合,并通过 MCP 协议暴露给 AI 平台(如 Claude, Codex, mcp-router 等)。

核心特性

  • 按需加载 (Lazy Loading):Skill 的具体正文指令仅在 AI 调用工具时才会加载进入上下文,显著优化 Token 使用。
  • 热加载 (Hot Reloading):自动扫描 skills/ 目录。新增、修改或删除技能后,只需在 AI 中刷新工具列表即可即时生效,无需重启服务。
  • 协议透明:将复杂的本地脚本或长 Prompt 封装为标准的 MCP Tool,降低 AI 平台的配置复杂度。
  • 脚本支持:支持执行本地脚本(Node.js 等),并通过环境变量自动传递参数。

项目结构

.
├── packages/
│   └── core/            # 核心逻辑包
│       ├── src/
│       │   ├── core/    # 扫描、解析、执行引擎
│       │   ├── server/  # MCP 服务实现
│       │   └── index.ts
│       └── package.json
├── apps/
│   └── desktop/         # Electron 桌面应用
│       ├── electron/    # Electron 主进程
│       ├── src/         # React 渲染进程
│       └── package.json
├── skills/              # 存放所有 Skill 的目录
│   └── example-skill/   # 具体的技能文件夹
│       ├── SKILL.md     # 技能定义文件(包含 YAML Frontmatter)
│       └── scripts/     # (可选)该技能相关的执行脚本
└── package.json         # 根 package.json (NPM Workspaces)

🎨 桌面 GUI 应用

本项目提供了一个功能完整的 Electron 桌面应用,用于可视化管理和测试 Skills:

主要功能

  • 📋 Skill Dashboard: 列表展示所有可用技能,支持实时刷新
  • ✏️ Skill Editor: 直接在 GUI 中编辑 SKILL.md 文件并保存
  • 🔧 Skill Simulator: 配置参数并执行技能,查看输出结果
  • ➕ Create/Delete Skills: 通过 UI 创建新技能或删除现有技能
  • ⚙️ 配置说明: 内置多平台(Claude/VSCode/Cursor/Cline)MCP 配置指南
  • 🌓 主题切换: 支持深色/浅色主题切换,偏好自动保存
  • 📱 响应式布局: 内容区域自动填充窗口,适配不同屏幕尺寸

启动 GUI

cd apps/desktop
npm install
npm run dev

应用将自动启动 Electron 窗口并加载技能列表。点击标题栏的"⚙️ 配置说明"按钮可查看不同平台的 MCP 配置方法。

快速开始

方式一: 使用 MCP 服务器 (CLI)

1. 安装依赖

npm install

2. 构建核心包

cd packages/core
npm run build

3. 运行 MCP 服务器

npm start

方式二: 使用桌面 GUI

cd apps/desktop
npm install
npm run dev

如何添加一个技能

skills/ 目录下创建一个新文件夹,并在其中创建 SKILL.md

示例 SKILL.md (纯 Prompt 型)

---
name: my-writing-skill
description: 一个帮助润色文案的技能。
---

# Writing Assistant
当你调用此工具时,请遵循以下规则进行文案润色:
1. ...
2. ...

👥 团队分发与部署

Skills Router 已配置好分发支持,你可以轻松地将其打包并分享给团队成员使用。

1. 开发者:如何打包分发

apps/desktop 目录下运行:

npm run dist

打包完成后,产物将生成在 apps/desktop/release/1.0.0/ 目录下:

  • macOS: SkillsRouter-1.0.0-mac.dmg
  • Windows: SkillsRouter-1.0.0-win.exe

你可以直接将该文件分发给团队成员。

2. 使用者:如何开始使用

接收者拿到安装包后,只需以下几步即可开始使用:

  1. 安装并启动:直接双击安装并打开 Skills Router。
  2. 快速配置
  • 点击应用顶部的 "⚙️ 配置说明" 按钮。
  • 选择对应的平台(如 Claude Desktop)。
  • 点击 "复制" 按钮获取为您电脑自动生成的 JSON 配置。
  • 将配置粘贴到 MCP 客户端的配置文件中即可。
  1. 环境要求
  • 确保电脑已安装 Node.js(执行 JS 脚本型技能需要)。

示例 SKILL.md (脚本执行型)

---
name: hello-skill
description: 执行脚本并返回结果。
parameters:
  userName:
    type: string
    description: 用户名
scripts:
  - node scripts/hello.js
---

MCP 配置参考

在你的 MCP 客户端(如 Claude Desktop)配置中添加:

{
  "mcpServers": {
    "skills-router": {
      "command": "node",
      "args": ["${serverPath}"],
      "env": {
        "SKILLS_DIR": "${skillsDir}"
      }
    }
  }
}

开源协议

ISC License

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use AI & ML servers.