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 Mgmt Bundle — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

@anht3889/dsh-mcp-mgmt-bundle

Mcp Mgmt Bundle

DeepSeek Harness profile bundle for MCP connection management in Web Settings

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

npx -y @deepseek-ai/dsh plugin --profile web add @anht3889/dsh-mcp-mgmt-bundle@0.0.6
READMECompatibilityVersions

Compatibility and provenance

Mcp Mgmt Bundle is published as @anht3889/dsh-mcp-mgmt-bundle and currently resolves to version 0.0.6. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
npm
Registry updated
9/20/2026

Versions

0.0.6stable
8/24/2026
0.0.5stable
8/19/2026
0.0.4stable
8/19/2026
Show 5 more versionsCollapse versions
0.0.3stable
8/19/2026
0.0.2stable
8/19/2026
0.0.1stable
8/19/2026
0.0.1-rc.2prerelease
8/17/2026
0.0.1-rc.1prerelease
8/17/2026

Related plugins

Loading related plugins…

Latest
0.0.6
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
233.8 kB
Files
40
Surface
web
License
MIT
Source
npm
GitHub
★ 2
Weekly downloads
70
Last push
8/24/2026
View source ↗Project homepage ↗
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

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-baseRemote Web Ui@linxin666/dsh-remote-web-uiScan-to-pair remote access for the dsh web GUI that shares one official interface: a QR beside the settings button pairs phones and PCs into the same Web GUI (a portrait-touch adaptation layer for phones, full desktop on PCs) through one-time tokens and rIm@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).

README

dsh-mcp-management

Out-of-tree MCP connection management for DeepSeek Harness. Architecture and scope live in docs/design.md.

Install

From npm (after the packages are published):

npx @deepseek-ai/dsh plugin --profile web add @anht3889/dsh-mcp-mgmt-bundle@0.0.6

From a local checkout (development), with a deepseek-harness checkout beside this repository — tsc resolves harness project references from there:

pnpm install && pnpm run build
npx @deepseek-ai/dsh plugin --profile web add ./packages/bundle

Restart the Web profile after installation.

Do not also mount @deepseek-ai/dsh-mcp-client for the same serverName — both register MCP tools and will conflict.

Settings UI

Add a server. Open Settings → MCP Servers and choose Add server. Fill in the name, transport (stdio or HTTP), command or URL, and authentication, then Save. Timeout and reconnect options live under Advanced settings.

Add MCP server

Server list. Each row shows the server name, an Enabled switch, and a summary of transport, connection state, and how many tools are enabled. Authorize appears only while an OAuth server has no token. Click the row to open details.

MCP Servers list

Server details. Toggle the server or individual tools, Reload to reconnect and re-list tools, open Connection logs, or use Edit configuration, Log out, and Delete. Disabling a tool unregisters it without dropping the connection; the choice is stored in the server record and survives a restart.

MCP server details

Storage

DataDefault path
Non-secret server records, including disabled tool names~/.dsh/mcp/servers.json
Secrets (tokens, header values, client secret)~/.dsh/mcp/secrets.yaml, or ctx.credentials when mounted

Override with the manager plugin's catalogPath / secretsPath config.

Servers behind a private certificate authority

Node trusts only its own bundled certificate authorities, so an HTTP server whose certificate comes from a corporate CA fails to connect with self-signed certificate in certificate chain even though a browser or curl reaches it. Set trustSystemCertificates: true on the manager plugin to trust the host's authorities as well, or launch the host with NODE_OPTIONS=--use-system-ca. Both widen TLS trust for the whole host process, which is why the config stays off by default.

OAuth

Each server's callback URL is the live web origin plus that server's auth.redirectPath (default /callback). Set publicOrigin on the manager when the browser reaches the host through a different origin. Authorization servers match the redirect URI exactly; a pre-registered public client usually allows /callback on any loopback port. The manager serves every configured path. Authorize and token requests also send the MCP URL as the RFC 8707 resource indicator.

Packages

PackageRole
@anht3889/dsh-mcp-mgmt-bundleInstallable surface: patch, manager, Settings UI
@anht3889/dsh-mcp-mgmt-mcpctx.mcp vocabulary (library)
@anht3889/dsh-mcp-mgmt-oauthPKCE OAuth + discovery (library)

License

MIT