DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Mcp Manager — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins

@ctl456/dsh-mcp-manager

Mcp Manager

非官方 DeepSeek Harness 插件:从 Web 设置页面或聊天中添加、移除、启用和禁用外部 MCP 服务器,使 Harness 能够将其工具作为原生工具调用

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add @ctl456/dsh-mcp-manager@0.1.0
README兼容性版本

兼容性与来源证明

Mcp Manager 以 @ctl456/dsh-mcp-manager 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
npm
Registry 更新时间
2026/9/20

版本

0.1.0stable
2026/9/12

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
87.7 kB
文件数
15
Surface
web
许可证
MIT
发布源
npm
周下载
40
查看源码 ↗项目主页 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 integrations-communication 分类下经过校验的插件。

Remote Web Ui@linxin666/dsh-remote-web-ui通过扫码配对访问 dsh Web GUI,共享一个官方界面:设置按钮旁的二维码可将手机和 PC 配对到同一个 Web GUI(手机采用竖屏触控适配层,PC 使用完整桌面界面),通过一次性令牌和 rIm@xmanrui/dsh-im将十一种 IM 渠道和一个公网 AI Office 接入本地 DeepSeek Harness。DSCODE@toddzheng024/dscode-bundle完整的 DeepSeek 编码代理,支持持久化 shell、Ultra 协作和自动权限审查。Acp App@deepseek-ai/dsh-acp-appdsh ACP 配置文件包:基于 dsh-base 的仅限自动化的 JSON-RPC stdio 和进程生命周期管理

README

dsh-mcp-manager

English | 中文

An unofficial plugin for DeepSeek Harness that manages external MCP servers: add, remove, enable and disable them from a Web settings card or from chat, and the harness calls their tools like built-in tools.

This project is not affiliated with, endorsed by, or supported by DeepSeek. See NOTICE.md for attribution and LICENSE for terms.

What it does

  • Keeps one list of external MCP servers and mounts one dsh-mcp-client connection per enabled entry.
  • Publishes each enabled server's tools as native tools named mcp__<server>__<tool>, so the model calls them without any extra wiring.
  • Adds, removes, enables and disables servers without editing YAML and without restarting the host.
  • Gives beginners a form in the Web UI instead of a configuration file.

Requirements

  • A DeepSeek Harness install with the dsh CLI, version 0.1.5-rc.2 or compatible. The plugin declares the harness packages it plugs into as peer dependencies (@deepseek-ai/dsh-mcp-client, dsh-settings, dsh-tools, dsh-util-values, @deepseek-ai/cordis); the profile you install into must already provide them, which the shipped web profile does.
  • Network access while installing, so npm can resolve those peers.

Install

dsh plugin --profile web add @ctl456/dsh-mcp-manager
dsh --profile web

Any profile works; web is the one with the Web UI. Remove it with:

dsh plugin --profile web remove @ctl456/dsh-mcp-manager

To install a packed tarball or a checkout instead of the registry:

npm pack                                   # produces dsh-mcp-manager-<version>.tgz
dsh plugin --profile web add file:/abs/path/to/dsh-mcp-manager-0.1.0.tgz

Use it in the Web UI

Open Settings → MCP servers — its own page in the settings nav, below Agent presets.

The MCP servers page on first use: the filter box and Add server button above an empty list

FieldMeaning
NameThe tool namespace: the model calls the server's tools as mcp__<name>__<tool>. Letters, digits, underscores, or hyphens, 1-32 characters.
ConnectionLocal program (stdio) launches a command; Remote service (HTTP) connects to a Streamable HTTP endpoint.
Command / Arguments / Environment / Working directorystdio only. One argument per line and one NAME=value per line; an empty working directory inherits the host's.
Endpoint URL / HeadersHTTP only. One Name: value per line.
Per-call timeout (ms)Optional; blank uses 60000.

Add server opens a dialog; choosing Remote service (HTTP) swaps the stdio fields for Endpoint URL and Headers.

The add dialog with Remote service (HTTP) selected, showing the Endpoint URL and Headers fields

Fill the fields and press Add. The page lists every configured server with its target, an Enable or Disable switch, and Remove; a name that already exists replaces that entry. The list pages five at a time, and the filter box matches on both the name and the connection target.

The page after adding a filesystem server: the row shows its stdio target with Disable and Remove controls

Manage servers from chat

mcp_manager_list reads the current list; mcp_manager_add, mcp_manager_remove and mcp_manager_set_enabled change it. Every call returns the fresh list with each server's transport, target, enabled state, connection status, tools and configuration problems, so you can ask the model to add a server instead of filling the form.

Where the configuration lives

The card and the tools edit the same mcp-manager section of $DSH_HOME/settings.yaml. The servers array in cordis.patch.yml seeds the composition base layer, so a profile or --patch overlay can preconfigure servers, while the settings document stays the value that wins.

Limitations

  • The manager bridges tools only; MCP resources and prompts are not supported.
  • Credentials in Environment and Headers are stored as plain settings values, so prefer variables your shell already exports and reference them by name.
  • The card shows configuration, not live connection health; use mcp_manager_list for connection status.

Rebuilding the bundled artifacts

lib/ and src/ are built inside a DeepSeek Harness checkout, because the upstream build chain is workspace-coupled: the host bundle comes from the repository-root tsdown config plus the Typert codegen plugin, and the browser bundle from packages/client/tsdown.client.ts and its helpers. Building this package standalone is therefore not supported.

git clone https://github.com/deepseek-ai/deepseek-harness
cd deepseek-harness && pnpm install && pnpm run build
cd /path/to/dsh-mcp-manager
scripts/sync-from-harness.sh /path/to/deepseek-harness

The script refreshes lib/, src/ and cordis.patch.yml, re-applies this repository's package name, and rewrites PROVENANCE.md with the harness version and commit.

Verify before publishing

npm run verify:install

It packs the tarball, checks the payload, installs it into a throwaway profile with dsh plugin add file:<tarball>, and asserts that the composed profile tree contains the mcp-manager row. That is the gate that separates "works from a checkout with link:" from "works the way a user installs it".

Releasing

The version in package.json, the v<version> git tag and the top section of CHANGELOG.md move together; pushing the tag runs .github/workflows/release.yml, which publishes the version to npm when it is new and opens the GitHub Release. The full runbook — tag rules, the release checklist and the npm token setup — is in RELEASING.md.

Licence

MIT, with the upstream copyright notice retained — see LICENSE and NOTICE.md.