DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Host Mcp Servers — DeepSeek Harness 插件(DSH Plugin)
← Plugins
H

@deepseek-ai/dsh-host-mcp-servers

Host Mcp Servers

可安装的 DeepSeek Harness 捆绑包,用于 MCP 服务器配置和 Web 设置

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

npx -y @deepseek-ai/dsh plugin --profile web add github:zhuyan1085/mcp-deliverable#9bab2b1eae61490e770a51883df5b771b55e751c
README兼容性版本

兼容性与来源证明

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

DSH 兼容范围
*
运行环境
web
发布来源
github
Registry 更新时间
2026/8/23

版本

0.1.0-rc1prerelease
2026/8/23

相关插件

正在加载相关插件…

最新版
0.1.0-rc1
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/8/23
查看源码 ↗
README Badge

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

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

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

认领这个 Plugin →
报告问题
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录

相关插件

继续浏览 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 使用完整桌面界面),通过一次性令牌和 rIm@xmanrui/dsh-im将十一种 IM 渠道和一个公网 AI Office 接入本地 DeepSeek Harness。Pocketdsh-pocket把 DeepSeek Harness 装进你的口袋:一个包、一个设置页,手机扫码即同步访问电脑上的 DSH(局域网 + 公网,实时同屏)。

README

mcp-deliverable

English | 中文

中文

这是一个可直接安装到 DeepSeek Harness profile 的社区 Bundle,为 Web Settings → Plugins 增加 MCP 服务器管理页。

Bundle 同时包含:

  • Host Remote:读取、原子写入和删除当前 profile 的 MCP 配置,并显示 Loader 与工具注册状态。
  • Web 设置页:编辑 stdio 与 Streamable HTTP 服务器,包括参数、环境变量、工作目录、请求头、调用超时、启动失败策略和重连策略。
  • 自包含 Typert 描述与浏览器产物:从 GitHub 安装时由 prepare 构建,不依赖相邻的 Harness 源码检出目录。
  • cordis.patch.yml:通过 dsh.bundle.patch 自动把插件层加入目标 profile。

动态 !!js 和无效配置保持可见、可删除,但不会把原始表达式发送到浏览器。字面量 env 与 headers 会返回可信 Host 的设置客户端用于编辑;秘密值应继续使用环境变量支持的 !!js 表达式。

从 GitHub 安装

要求 Node.js ^22.19.0 或 >=24.0.0,并使用支持 dsh plugin 的 DeepSeek Harness 版本。

dsh plugin --profile web add github:zhuyan1085/mcp-deliverable

Git 安装会运行本仓库的 prepare 构建。pnpm 10 及以上默认拒绝执行依赖的构建脚本,因此第一次安装可能会失败并打印需要授权的确切键。按提示在该 profile 的 pnpm-workspace.yaml 中加入:

allowBuilds:
  '<pnpm 输出的完整包键>': true

然后重新执行安装命令。该授权允许包在安装阶段执行代码,只应授予你信任的源码。生产使用建议锁定提交:

dsh plugin --profile web add github:zhuyan1085/mcp-deliverable#COMMIT_SHA

安装完成后重新启动对应 profile。Bundle 层先于用户自己的 cordis.patch.yml 应用,因此用户仍可按 id: mcp-servers 覆盖或禁用它。

配置

正常通过 dsh 启动时无需配置:插件写入当前 profile 的 cordis.patch.yml。嵌入式或测试运行可以显式指定绝对路径:

- id: mcp-servers
  config:
    patchFile: /absolute/path/to/cordis.patch.yml

patchFile 由导出的 Schemastery Config schema 校验;空配置使用当前启动 profile,不使用硬编码部署路径。

本地验证与 tarball

在一份已安装依赖的 DeepSeek Harness 检出目录旁运行:

DSH_CHECKOUT=/absolute/path/to/deepseek-harness bash scripts/verify.sh
pnpm run build
pnpm pack

scripts/verify.sh 执行严格 TypeScript 检查与聚焦 Vitest;pnpm pack 生成可离线分发的预构建 tarball。

English

This community-maintained installable Bundle adds MCP server management to DeepSeek Harness Web Settings → Plugins. It ships the Host Remote, Web UI, Typert descriptors, browser bundle, and a dsh.bundle.patch layer in one Git-installable package.

Install it with:

dsh plugin --profile web add github:zhuyan1085/mcp-deliverable

Git installs run the self-contained prepare build. With pnpm 10+, copy the complete package key reported by the first failed install—including its Git source and commit—into the profile's pnpm-workspace.yaml, then repeat the command. Pin a trusted commit for production installs:

dsh plugin --profile web add github:zhuyan1085/mcp-deliverable#COMMIT_SHA

The plugin normally targets the active profile's cordis.patch.yml; embedded runs may set an absolute config.patchFile. Literal env and headers values are browser-readable by the trusted-host settings client. Keep secrets in environment-backed !!js expressions and never commit credentials.