DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Mcp Ui — DSH Plugin for DeepSeek Harness
← Plugins
M

dsh-mcp-ui

Mcp Ui

MCP 服务器可视化配置插件:在 DSH Web 设置界面管理 MCP 服务器(stdio / streamable-http / SSE),保存即生效,无需手改配置文件。| Visual MCP server management for DeepSeek Harness: configure stdio / HTTP / SSE servers from the settings UI, hot-synced without editing config files.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:quan-v/dsh-mcp-ui#987553ec0929327e69b8f5009b37faa2036b066a
READMECompatibilityVersions

Compatibility and provenance

Mcp Ui is published as dsh-mcp-ui and currently resolves to version 1.0.1. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
8/22/2026

Versions

1.0.1stable
8/22/2026

Related plugins

Loading related plugins…

Latest
1.0.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
8/22/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in integrations-communication.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseIm@xmanrui/dsh-im把十一种 IM 渠道和公网 AI Office 接入本机 DeepSeek Harness。 Connect eleven IM channels and a public AI Office to a local DeepSeek Harness.Pocketdsh-pocketPut DeepSeek Harness in your pocket: one package, one settings page, and scan a QR code on your phone to access DSH on your computer in sync (LAN + public network, real-time screen mirroring).DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.

README

dsh-mcp-ui

Visual MCP server configuration for DeepSeek Harness: manage Model Context Protocol servers right from the DSH Web settings UI. It wires the official dsh-mcp-client plugin instances for you — save and it just works, no config files to hand-edit.

中文文档

Features

  • 🖥️ Settings card UI — manage servers under Settings > Plugins > Plugin Config > MCP Servers, same card style as other DSH plugins
  • 🔌 Both transports — stdio (local process) and streamable-http (remote URL)
  • 📝 Full field coverage — serverName, command/args/env/cwd, url/headers, tool-call timeout, startup-failure policy, auto-reconnect (toggle / delay / cap / attempts)
  • 🔄 Hot sync — saving mounts/unmounts the corresponding dsh-mcp-client instances host-side, no dsh restart needed
  • 🛡️ Safe — server list lives in ~/.dsh/settings.yaml; secrets in env can be referenced as environment variables

Install

# from GitHub
dsh plugin --profile web add github:quan-v/dsh-mcp-ui

Published to npm later — once available, dsh plugin --profile web add dsh-mcp-ui also works.

Restart dsh web, then find the MCP Servers card under Settings > Plugins > Plugin Config.

Usage

  1. Open the settings card, click + Add Server
  2. Fill in a unique serverName (model-facing tools are named mcp__<serverName>__<tool>)
  3. Pick a transport (stdio / streamable-http / SSE) and fill the matching fields
  4. Click Save — the host connects automatically and the server's tools become callable by the model

Config storage

The server list lives in the mcp-ui: section of settings.yaml, sibling to other plugin settings:

mcp-ui:
  servers:
    - serverName: github
      transport: stdio
      command: npx
      args:
        - -y
        - '@modelcontextprotocol/server-github'
      env:
        GITHUB_TOKEN: ${GITHUB_TOKEN}
      toolCallTimeoutMs: 60000
      failOnStartupError: false
      reconnect:
        enabled: true
        initialDelayMs: 500
        maxDelayMs: 30000
        maxAttempts: 10

Relationship with dsh-mcp-client

This plugin does not implement the MCP protocol. It does two things:

  1. Provides the settings card and stores your configuration in settings.yaml
  2. Watches config changes host-side and mounts/unmounts @deepseek-ai/dsh-mcp-client instances via ctx.plugin()

The official dsh-mcp-client handles the actual connections, tool discovery, and mcp__server__tool naming.

Changelog

1.0.1 (2026-08-22)

  • Fix: add explicit key to the settings.plugin.item slot registration. DSH 0.1.1+ requires keyed slots to declare options.key; without it the plugin fails to load with keyed slot "settings.plugin.item" requires options.key.

License

MIT