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

@guowenzhang/dsh-mcp-manager

Mcp Manager

DeepSeek Harness 的 MCP 服务器管理:编写组合行,选择已允许的服务器何时加载,并筛选会话可调用的工具

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

npx -y @deepseek-ai/dsh plugin --profile web add @guowenzhang/dsh-mcp-manager@0.2.0
README兼容性版本
MCP settings

兼容性与来源证明

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

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

版本

0.2.0stable
2026/9/24
0.1.0stable
2026/9/23

相关插件

正在加载相关插件…

最新版
0.2.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
231.8 kB
文件数
8
Surface
web
许可证
Apache-2.0
发布源
npm
GitHub
★ 0
周下载
0
最近提交
2026/9/24
查看源码 ↗
README Badge

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

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

README


description: "MCP server management for DeepSeek Harness: author composition rows, choose when an allowed server loads, and filter which of its tools a session may call." kind: "plugin-readme"

@guowenzhang/dsh-mcp-manager

中文 | English

Background: DeepSeek Harness

DeepSeek Harness (dsh) is the open-source agent harness from DeepSeek AI, where nearly every capability is a plugin on Cordis. It is in developer preview and iterating fast, so expect compatibility-breaking changes (docs, 0.1.7-alpha.*); this plugin is a standalone third-party package that resolves @deepseek-ai/* from the running host.

The problem this plugin solves

MCP servers were hand-written composition rows whose whole tool set always sat in context, and an existing Claude Code setup had to be retyped; this plugin manages the rows from the settings page, loads a server on demand with only the tools you pick, and imports your Claude MCP configuration in one click.

Screenshots

设置 → MCP 管理 — loading modes and server rows

MCP settings

The three loading modes and the configured servers, each row carrying its plane, live status, Edit, and enable switch.

新增 MCP — the JSON configuration and the tool picker

MCP editor

A server's JSON configuration, and the tools it publishes: every one is ticked by default, and an unticked method never reaches the model.

导入 Claude MCP 配置 — pick the servers to bring over

Import Claude MCP configuration

Every MCP server found in the Claude Code configuration files; the ticked ones are imported as global rows.

Install

npx @deepseek-ai/dsh plugin --profile web add @guowenzhang/dsh-mcp-manager

From the npm registry: https://www.npmjs.com/package/@guowenzhang/dsh-mcp-manager — restart the host afterwards; local checkouts, git sources and troubleshooting are in AGENTS.md.

Usage

Loading modes

The enable switch says whether a server may be used; the mode says when an allowed server enters context. Set it in 设置 → MCP 管理 → MCP 加载方式; the choice is stored in the mcp-manager settings namespace and applies from the next request on.

ModeBehavior
Load all (eager)Allowed servers mount at session start; their tools are always in the request
Dynamic insert (dynamic, default)They stay unmounted; mcp_load mounts one into the calling session — best tool binding, but the tool list changes once per load. A filtered row mounts only its visible tools
Lazy (lazy)mcp_load connects without registering anything and returns the tool schemas, called through the fixed mcp_call proxy — the tool list never changes, so the request-cache prefix is never invalidated

Under dynamic / lazy the system prompt lists every loadable server as name — the description you wrote on its row, and the model calls mcp_load / mcp_unload by name. Names are always listed; descriptions are truncated to 80 characters under a 900-character budget. Load state is deliberately absent — reporting it would rewrite the system prompt on every mcp_load and invalidate the whole cache prefix.

Connections are per-session: a repeated mcp_load reuses one, different sessions each get their own, and a session that ends closes what it opened; eager shares one standing instance instead. Toggling a row shows a brief starting / stopping state while the child process comes up.

Tool filters

Settings → MCP 管理 → a row's Edit → the Tools tab lists every method the server publishes, all checked. Unchecking one hides it: it never enters context, and calling it is refused. Filtering does not change the cost model — the loading mode decides that.

For wildcards, write the rules yourself in the mcp-manager settings under tools, keyed by the row key (preset:<preset id>:<serverName>):

FormMeaning
create_workitemAllow list: one entry without ! keeps only matching tools
!delete_*Deny list: when every entry starts with !, matching tools are hidden
*, ?Wildcards: * matches any run of characters, ? matches exactly one

Rules are read at the next mcp_load; an already-loaded server keeps the tools it was admitted with. eager ignores filters, and an unparsable rule set hides nothing.

Importing a Claude Code configuration

设置 → MCP 管理 → 导入 Claude 配置 reads the files Claude Code writes and offers every server it finds as a checklist; ticked servers are imported as global rows.

SourceFile
Claude Code user config~/.claude.json → mcpServers
Per-directory scope inside it~/.claude.json → projects["<working directory>"].mcpServers
Claude Code settings~/.claude/settings.json, settings.local.json
Project scope<project root>/.mcp.json

Nothing is modified — the scan only reads — and each server is imported on its own, so one failure does not stop the rest. env / headers come along so the server can connect, but the dialog shows only those keys' names.

Notes and caveats

  • Enabling a server still waits on the child process (npx -y … / uvx …, usually 1–3 seconds). The UI never blocks; installing the server as a direct executable shortens this noticeably.
  • Switching to the edit dialog's Tools tab connects to that server once (to list its tools), with the same 1–3 second cost; renaming a row only never connects.
  • Global-plane rows ignore the loading mode: they always mount.
  • A preset's first mount starts and then kills each server once. On-demand loading works by unmounting rows at runtime, which cannot beat the child process's spawn, so the first session to use a preset after a host restart pays one short start-up.
  • Import reads Claude Code and the project .mcp.json only. Cursor, Cline, Roo, and VS Code configuration files are not scanned, and an import always targets the global plane; move a row into a preset afterwards if you want it on-demand.
  • A filtered row under dynamic gets no server instructions and no resource tools. The harness's mcp-client provides both, and this row registers through the plugin's own carrier instead. The tools themselves — argument binding, results, image projection — match a native mount.

License

Apache License 2.0 — see LICENSE. This project includes MIT-licensed portions derived from DeepSeek Harness; see NOTICE.

Further reading

  • AGENTS.md — full install variants, build and wiring, deployment and live-update semantics, release steps, the traps, and the tests.
  • docs/design-decisions.md — why three loading modes, which alternatives were rejected, and how Claude's tool search compares.
  • docs/competitive-landscape.md — comparison with other DSH MCP plugins and the feature roadmap it produces.
  • DeepSeek Harness documentation.