dsh-mcp-manager
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@dsh-mcp-manageradd the PostgreSQL MCP server from the official registry"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
dsh-mcp-manager

Durable MCP server manager for DeepSeek Harness (DSH) — a composed loader plugin (not a dynamic session plugin), so it survives DSH restarts and upgrades.
Built to the DSH plugin development standard (see the official docs: 第一个插件, 开发一个工具):
object-form Cordis plugin (
export default { name, inject, apply })required services declared in
inject— the framework guarantees they are ready beforeapplyruns, and reloads the plugin if one disappears (this is what keeps the plugin alive across DSH upgrades)agent-facing capabilities exposed as registered model tools via
ctx.tools.register(defineTool(...)):mcp_manager_list,mcp_manager_set_enabled,mcp_manager_restart,mcp_manager_addUI-facing capability via a
webServerexact route (POST /dsh-mcp-manager/api), consumed by the client half
Features:
Settings → MCP 管理 page (added by the client half)
Host half manages
@deepseek-ai/dsh-mcp-clientrows in the real patch files:项目级 →
~/.dsh/profiles/<profile>/cordis.patch.yml全局 →
~/.dsh/cordis.patch.ymladd / edit / enable / disable / restart / delete, live tool-count health, JSON export/import, per-file write lock
How it works
Piece | File | Role |
Host plugin source |
| TypeScript source (the documented plugin shape); build with |
Host plugin (compiled) |
| Cordis object-form plugin: patch-file CRUD + 4 model tools + |
Client bundle |
| Browser module: registers the settings page; calls the host via |
Loader row | added to the profile's | composes the host entry; the client-modules service scans enabled entries and serves the client bundle |
The loader entry is the single composition point for both halves — no changes to any shipped DSH package. The package itself is platform-neutral (pure JS; path separators detected at runtime), so it works on Windows, macOS and Linux. Building (npm run build) requires the devDependencies (typescript, @deepseek-ai/cordis, @deepseek-ai/dsh-tools, @types/node); the shipped/installed package needs none of them.
Related MCP server: Deepseek MCP Server
Install (any platform)
Quickest — one command, via npm (requires Node.js >= 18):
# Option A — one-shot with npx, nothing to install
npx -y @xxxyz/dsh-mcp-manager
# Option B — global npm install, then run the command any time
npm i -g @xxxyz/dsh-mcp-manager
dsh-mcp-manager # install the plugin
dsh-mcp-manager-uninstall # uninstall the plugin
npm i -g @xxxyz/dsh-mcp-manager@latest # upgradeAll flags pass through in both options: npx -y @xxxyz/dsh-mcp-manager --dsh-home /path/.dsh --profile web --repair --port 3080.
npm package name:
@xxxyz/dsh-mcp-manager(the bare namedsh-mcp-manageris taken on npm by an unrelated package). The deployed plugin name is stilldsh-mcp-manager— npm/npx is only the delivery channel; the installer copies the files to the same fixed locations below.
No-npm alternative — directly from GitHub:
npx -y github:xxxyz/DeepSeekHarness-MCP-ManagerAlternative — run the installer scripts from a source checkout (all installers share one cross-platform logic file, install.mjs). Install steps:
copy the package to
<dshHome>/local-packages/dsh-mcp-manager(a true source kept outsidenode_modules, so DSH upgrades never touch it)copy it into
<dshHome>/profiles/node_modules/dsh-mcp-manager(a plain copy on purpose — a symlink would make Node ESM resolve the plugin's realpath where@deepseek-ai/dsh-toolscannot be found)append the loader row to
profiles/<profile>/cordis.patch.yml(idempotent; keeps the patch a valid top-level array)
Windows (PowerShell):
.\dsh-mcp-manager\install.ps1 # default: ~/.dsh, web profile
# or: .\install.ps1 -DshHome D:\path\.dsh -Profile webmacOS / Linux:
./dsh-mcp-manager/install.sh # default: ~/.dsh, web profile
# or: ./install.sh --dsh-home /path/.dsh --profile webAny platform (direct):
node dsh-mcp-manager/install.mjs [--dsh-home <path>] [--profile <name>] [--port <n>] [--repair] [--skip-patch]Then restart DSH and open Settings → MCP 管理. The four mcp_manager_* tools become callable by the model after that restart.
Uninstall (any method):
dsh-mcp-manager-uninstall # if installed via npm -g
# or: .\dsh-mcp-manager\uninstall.ps1 | ./uninstall.sh | node uninstall.mjs [--dsh-home <path>] [--profile <name>]then restart DSH. Uninstall removes the deployed copy, the local-packages true source, and the loader row.
After a DSH upgrade: --repair
A DSH upgrade (or a broken HMR state) can leave the plugin's host half unloaded while the files are still in place. One command fixes it — re-copies the package from the source of record, bumps the loader row's config.version to force an HMR re-apply, then polls the API until it answers:
node dsh-mcp-manager/install.mjs --repair # default ~/.dsh, web, port 3080
node dsh-mcp-manager/install.mjs --repair --port 3080
# PowerShell: .\install.ps1 -Repair -Port 3080 bash: ./install.sh --repair --port 3080--repair returns success only when POST /dsh-mcp-manager/api answers {ok:true} again. If the API still does not answer after 30s, restart DSH once (the loader always re-imports fresh at boot).
API reference
All ops are POST /dsh-mcp-manager/api with {"op": "<op>", "args": {...}}, same-origin.
op | args | result |
|
|
|
| `{serverName, transport, url | command, args?, headers?, env?, level, enabled?}` |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Model tools
Registered on the host with ctx.tools.register(defineTool(...)) (standard @deepseek-ai/dsh-tools):
tool | description |
| list all configured MCP servers (level, enabled state, live loader status, tool count) |
| enable / disable one server (id, level, enabled) |
| restart one server (id, level) |
| add a server (serverName, transport, url |
Notes / limitations
The HTTP route is unauthenticated on the local web server — fine for a local single-user machine; do not expose the DSH web port publicly.
Managed rows carry
# dsh-mcp-manager:server:<id>markers; the loader row is aninsertblock addingid: mcp-manager, name: dsh-mcp-manager— DSH's patch dialect treats a plain- id:row as an override of an existing entry (silently skipped when absent), so adding a plugin requires theinsertform.If the running web page predates the install, a page refresh or DSH restart is needed for the client module (the boot graph is built at page load).
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityBmaintenanceEnables integration of DeepSeek's language models with MCP-compatible applications, offering features like chat completion, custom model selection, and parameter control for enhancing language-based interactions.62,198351MIT
- AlicenseAqualityAmaintenanceMCP server for DeepSeek AI models (Chat + Reasoner). Supports multi-turn sessions, model fallback with circuit breaker, function calling, thinking mode, JSON output, multimodal input, and cost tracking.32,81017MIT
- FlicenseAqualityCmaintenanceA robust MCP server with tools to search, install, configure, repair, and uninstall MCP servers, automating setup and maintenance across multiple AI and developer tools.417
- Alicense-qualityCmaintenanceEnables LLMs to manage MCP server configurations, including listing, enabling, disabling, and version control.10MIT
Related MCP Connectors
MCP server for AI dialogue using various LLM models via AceDataCloud
A MCP server built for developers enabling Git based project management with project and personal…
Cloud-hosted MCP server for durable AI memory
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/xxxyz/DeepSeekHarness-MCP-Manager'
If you have feedback or need assistance with the MCP directory API, please join our Discord server