dsh-mcp-mgr
连接与集成yangfch3/dsh-mcp-mgr
DeepSeek Harness 的 MCP 服务器管理器:发现工作区 mcp.json 文件,热同步 MCP 服务器,并提供网页设置界面进行管理。
- deepseek-harness
- dsh
- dsh-plugin
- dsh-plugins
- mcp
验证与兼容性
这里展示目录实际采集到的证据;未声明的信息会明确标为未知。
- 当前版本兼容性
- 已在当前目录版本验证
- 声明的 Harness 范围
- 未声明
- 声明的平台
- 未声明
- 适用 Profile
- web
- 构建授权
- 未检测到需要
- 权限声明
- 未声明
- 外部服务
- 未声明
- 遥测声明
- 未知
这不是安全背书;安装前仍应查看源码、权限和配置。
查看证据与判定范围
验证仅覆盖标出的来源、版本和 Harness 环境,不代表未来版本仍然兼容。
dsh-mcp-mgr@0.1.5- 插件已在隔离环境完成加载检查。
README
dsh-mcp-mgr
English | 中文
A workspace-level MCP manager for DeepSeek Harness: it reads MCP servers from each workspace's .dsh/dshmm/mcp.json, registers their tools dynamically, and provides a management tab in the Web settings UI.

Choose your workflow
| User | Entry point | Source checkouts required |
|---|---|---|
| Regular user | npm package + npx @deepseek-ai/dsh | Neither deepseek-harness nor this repository |
| Source developer | deepseek-harness source + this repository source | See Source Developer Guide |
Regular users: npm package
Install and start
npx @deepseek-ai/dsh plugin --profile web add dsh-mcp-mgr@latest
npx @deepseek-ai/dsh web
Run the install command again to update:
npx @deepseek-ai/dsh plugin --profile web add dsh-mcp-mgr@latest
Uninstall:
npx @deepseek-ai/dsh plugin --profile web remove dsh-mcp-mgr
Workspace configuration
Create .dsh/dshmm/mcp.json at the workspace root:
{
"mcpServers": {
"my-http-server": {
"type": "http",
"url": "http://127.0.0.1:8090/mcp"
},
"my-stdio-server": {
"type": "stdio",
"command": "npx",
"args": ["-y", "<mcp-server-package>"]
}
}
}
Rules:
- A missing
typeis treated as Streamable HTTP;${VAR}environment expansion is supported. - A stdio server without
cwduses the workspace root. serverNameis globally unique; duplicates are shown as conflicts.- Set
"enabled": falseto disable an entry without removing it; absent means enabled.
Behavior and limits
- Workspace tools use the
mcp__<serverName>__<tool>naming convention. - Settings strict mode is used to mount only the selected workspace's servers.
Source developers
When modifying both deepseek-harness and this plugin from source, see the Source Developer Guide. Both repositories may be anywhere; they do not need to be siblings or use fixed paths.
Design notes live in Doc/requirements.md.