DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-easy-mcp

Easy Mcp

DSH MCP 服务器图形化管理插件:在设置界面查看/新增/编辑/启用禁用/删除/重连/测试 MCP 服务器(stdio / streamable-http / SSE,含 resources/prompts 与图片桥接),配置持久化到 settings.yaml,变更实时生效。

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

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

兼容性与来源证明

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

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

版本

0.2.0stable
2026/8/21

相关插件

正在加载相关插件…

最新版
0.2.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
158.1 kB
文件数
13
Surface
web
许可证
MIT
发布源
npm
GitHub
★ 1
周下载
0
最近提交
2026/8/21
查看源码 ↗
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 和进程生命周期管理Im@xmanrui/dsh-im将十一种 IM 渠道和一个公网 AI Office 接入本地 DeepSeek Harness。Pocketdsh-pocket把 DeepSeek Harness 装进你的口袋:一个包、一个设置页,手机扫码即同步访问电脑上的 DSH(局域网 + 公网,实时同屏)。DSCODE@toddzheng024/dscode-bundle完整的 DeepSeek 编码代理,支持持久化 shell、Ultra 协作和自动权限审查。

README

dsh-easy-mcp

Visual MCP server manager for DeepSeek Harness: view, add, edit, enable/disable, delete, reconnect, and test MCP servers from a dedicated MCP Servers page — tools register/unregister live with config changes, no restart, no hand-written YAML.

English | 中文

MCP Servers page

Features

  • MCP Servers page in Settings: server list (name, transport stdio / streamable-http / SSE, command or url, enable switch, status) with add / edit / enable / disable / delete / reconnect.
  • Full protocol coverage: tools plus resources (registered as read_resource tools), prompts (registered as use_prompt tools), logging (server logs forwarded to host log), roots (announced empty), and sampling (explicitly rejected with a clear error).
  • Image content bridge: image blocks returned by servers are saved to a temp file and the model is pointed to read_image — no more content discarded.
  • SSE transport (legacy pre-2025-03 protocol) in addition to stdio and streamable-http.
  • Argument validation: tool arguments are validated locally against the server's input schema before the network round-trip; clear errors instead of server-side surprises.
  • Connect test: probes each server via initialize + tools/list, reports latency and tool count; failures show the concrete error.
  • Error visualization: anomalies show the concrete error (ENOENT, ECONNREFUSED, timeout, …) in red under the card.
  • Auto backup: every UI save backs up the config to ~/.dsh/dsh-easy-mcp/backups/ (keep latest 5), so misconfigurations are always reversible.
  • Live updates: config is stored in the mcp section of ~/.dsh/settings.yaml and hot-synced — no structural-layer edits, no restart needed.
  • Self-contained engine: built on @modelcontextprotocol/sdk, no dependency on the official dsh-mcp-client package.
  • Bilingual UI (中文 / English).

Installation

dsh plugin --profile web add dsh-easy-mcp      # install
dsh plugin --profile web remove dsh-easy-mcp   # uninstall

Restart dsh web, then open Settings → MCP Servers.

Configuration

Servers are stored in the mcp section of ~/.dsh/settings.yaml and managed in the UI (manual edits are hot-synced too):

mcp:
  servers:
    - name: playwright
      enabled: true
      transport: stdio
      command: /opt/homebrew/bin/node
      args:
        - /path/to/playwright/mcp/cli.js

The plugin ships an empty default — no server is preconfigured. Missing fields are filled with schema defaults (enabled: true, env: {}, reconnect on, …).

Notes

  • command may be a PATH short name (playwright-mcp, node, npx) only when the dsh process can find it. If dsh web is launched from Finder / launchd / a shell without fnm, use absolute paths (command: /opt/homebrew/bin/node + absolute args).
  • Resources/prompts are registered as tools with a per-server cap of 50 combined (excess entries are skipped with a log line).
  • SSE is the pre-2025-03 protocol — prefer streamable-http for new servers; SSE is kept for legacy servers.
  • Image temp files live under the system temp dir (dsh-easy-mcp-images/) and are cleaned up on disconnect.

License

MIT