DeepSeek Harness plugin

dsh-mcp-manager-1a125

DSH 全局 MCP 管理器:设置页「MCP 管理」——粘贴 JSON 一键添加 / 开关 / 删除全局 MCP 服务(统一写入宿主 cordis.patch.yml,跨项目生效)。

Jump to install

Source facts

Repository
1a125/dsh-mcp-manager
Latest update
Aug 13, 2026
Category
Tools & Capabilities
GitHub stars
2
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/1a125/dsh-mcp-manager
Plugin: dsh-mcp-manager-1a125
Author: 1a125

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer3 files
README.mdSource · read only

dsh-mcp-manager

DSH(DeepSeek Harness)全局 MCP 管理器:在 设置弹窗 →「MCP 管理」 页面统一管理所有 MCP 服务。

功能

  • 统一全局管理:所有 MCP 统一写入宿主级 ~/.dsh/cordis.patch.ymlmcp-client 行),由宿主加载,任何项目/会话都可调用,重启后保持。
  • 粘贴 JSON 添加:支持标准 mcpServers 格式,一次添加多个服务,无需填写繁琐表单。
  • 开关 / 删除:每个服务的开启/关闭直接修改宿主 cordis 配置(disabled 标记),运行期即时连接/断开。
  • 状态展示:已连接状态、工具数量(通过宿主工具注册表实时检测)、错误信息。

安装

方式一:GitHub 源直接安装(推荐)

dsh plugin --profile web add "github:1a125/dsh-mcp-manager#main"

方式二:手动

dsh-mcp-manager 放入 ~/.dsh/profiles/web/node_modules/,并在 ~/.dsh/profiles/web/cordis.patch.yml 追加:

- insert:
    - id: mcp-manager
      name: 'dsh-mcp-manager'

重启 DSH 后,设置弹窗中会出现「MCP 管理」页面。

添加 MCP 示例

{
  "mcpServers": {
    "my-server": {
      "command": "node",
      "args": ["C:/path/server.js"],
      "env": { "API_KEY": "xxx" }
    }
  }
}

仅支持 stdio 传输(command 必填);支持单个 server 配置或 mcpServers 多服务格式。

技术说明

  • Host 半部:官方 github/mcp SDK stdio 桥 + ~/.dsh/cordis.patch.yml 读写 + 工具注册(mcp__<服务名>__<工具名>)。
  • Client 半部:注册 settings.section「MCP 管理」页面(设置弹窗入口)。
  • 启动时不做重复连接:宿主已从 cordis.patch.yml 静态加载的服务,通过工具注册表检测状态。

License

MIT