drfccv/dsh-mcp-center1

dsh-mcp-center

MCP 中心:DSH 的 MCP 服务管理器,支持在设置页注册 HTTP 或本地 stdio MCP 服务器,将其工具自动发布给模型。

AI 分析

核心用途是扩展模型的能力边界。适合需要对接外部工具生态(如本地文件系统、自定义 Web 服务)的开发者。无需安装外部 MCP SDK。

套件
dsh-mcp-center
版本
0.1.0
授權
MIT
最近更新
2026年8月14日

安裝

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:drfccv/dsh-mcp-center

Configuration storage

Server configs live in ~/.dsh/mcp-center.json:

{
  "servers": [
    { "id": "…", "name": "web", "type": "http", "url": "http://localhost:3000/mcp", "authMode": "none" },
    { "id": "…", "name": "fs", "type": "stdio", "command": "npx", "args": ["-y", "@modelcontextprotocol/server-filesystem", "/tmp"] }
  ]
}

⚠️ Bearer tokens are stored here in plain text — treat this file as a secret.