dsh-mcp
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-mcpRead the project's README.md and package.json, and report the name and description."
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 ⚡
Fast and cheap — the heavy work runs on deepseek-v4-flash.
An execution layer for MCP agents — powered by a local DeepSeek Harness.
Agentic coding tools are expensive and slow for one reason: the parent model
reads files one by one. dsh-mcp flips that — the parent agent keeps the
reasoning, the local DeepSeek Harness does the heavy lifting: batch reads,
edits, and command runs, priced at deepseek-v4-flash rates, on your machine.
Works with any MCP client · tested end-to-end with Claude Code
Why: fast and cheap, by design
The pain. Long-horizon, multi-file work is where agentic tools bleed money
and time: the parent model grinds through every file itself — one Read per
file, exploration loops, context that grows and drifts. You pay the parent's
per-token rates for the reading, and you wait for the model to do it
serially.
The fix. One delegate_to_dsh call hands the whole token-heavy subtask to
a fresh, focused DeepSeek Harness agent running deepseek-v4-flash inside
your workspace. All the file I/O happens there — batched, local, cheap. The
parent stays in the loop for what actually needs a brain: planning,
diagnosis, decisions, verification.
Measured on 100 SWE-bench-style long-horizon tasks (heterogeneous model setup: parent = deepseek-v4-pro, DSH = deepseek-v4-flash; arm B runs the same parent model without the plugin):
with | raw agent | |
Accuracy | 100/100 · 100% | 89/100 · 89% |
Avg. wall time | 76s | 120s |
Statistical significance | — | Fisher p < 0.001 |
Faster, more accurate — and the accuracy gap is now statistically significant (p = 3.7×10⁻⁴ at n=100), not just directional. The expensive reads now run on deepseek-v4-flash. Full report · Reproduce it
Related MCP server: core-agent-mcp
How it works

The prompt used to generate this is in
docs/architecture-image-prompt.md.
A standard MCP stdio server. Any client that speaks MCP can use it — Claude Code is the client we validated end-to-end (real API calls, subdir launches, Chinese, spaces in paths).
Parent-agent model. Each delegation is one self-contained subtask; DSH is a stateless worker (fresh process per call — no session to corrupt).
Zero config, works out of the box. The DSH CLI is auto-discovered (env override → sibling checkout → child checkout → installed under
%USERPROFILE%\.dsh).Windows-first.
process.execPath+ explicit argv,shell: false— no quoting bugs, no.cmdshims, spaces-in-paths just work.
Quick start
Step 1 — build once
cd dsh-mcp
npm install
npm run build # → dist\index.jsStep 2 — register with your MCP client (Claude Code shown as the example)
claude mcp add dsh `
--transport stdio `
--env DEEPSEEK_API_KEY=sk-... `
-- node D:\path\to\dsh-mcp\dist\index.js
claude mcp list # confirm "dsh" is listedThis is a standard MCP server — the same dist\index.js also works with
OpenAI Codex, Cursor, VS Code and any other MCP client (see
Deployment).
Step 3 — restart Claude Code, then make your first delegation
Claude Code loads MCP servers at startup, so restart it inside any project. Then just ask, in plain words:
Have DSH read this project's README.md and package.json, and report the project name and the first paragraph of the README. Don't read the files yourself — delegate everything.
You'll see Claude call delegate_to_dsh, and the answer comes back in
seconds. DSH runs in your project root — never in the dsh-mcp directory.
delegate_to_dshnot showing up? Re-runclaude mcp list— if the server failed to start, it will report an error there. Jump to Troubleshooting.
Benchmark
100 long-horizon, multi-file tasks in two batches (01–50: bug fixes, refactors, migrations, implement-from-spec, test-driven, audit; 51–100: harder — deep data flows, async races, state machines, parsers, caches, cross-process state) · automated ground-truth verification (run assertions + stdout checks; clean fixtures must fail, reference fixes must pass) · heterogeneous model setup: parent = deepseek-v4-pro on both arms, DSH = deepseek-v4-flash on arm A · full breakdown:
tests/bench/bench-report.md· experiment note: the Claude Code in this benchmark runs on a deepseek-v4-pro kernel (configured via theANTHROPIC_MODELenv var) — the parent is a DeepSeek model, not an Anthropic model, on both arms. The delta is therefore exactly the plugin: the same DeepSeek parent, with vs. withoutdsh-mcp· dataset:tests/bench/tasks.mjs
with | raw agent | |
Accuracy | 100/100 · 100% | 89/100 · 89% |
Avg. wall time | 76.5s | 120.2s |
Total wall time | 7647s | 12019s |
Failures | 0 | 11 |
What the numbers say
Every raw-agent failure is a "finished half" failure. 5 of 11 are cross-file jobs (renames, log migrations, util splits) where the raw agent changed references but left the old file behind, or migrated 3 of 5 files; 5 are single-point jobs where it fixed one bug out of two, escaped 3 of 5 HTML chars, deduped but didn't sort. DSH verifies inside the delegation and catches the leftovers before handing back.
Multi-file investigation stays the biggest win — batch "read N files + analyze" in one delegation vs. file-by-file reads that lose early context.
Statistically significant now. Fisher exact test on accuracy (100% vs 89%, n=100): p = 3.7×10⁻⁴ (< 0.001). The 20-task pilot was directional only; at 100 tasks the gap is real.
The harder batch (51–100) makes the plugin look better, not worse — arm A: 100% in both batches, avg 65s on the hard batch; arm B: 88% → 90% but still leaves 11 failures overall.
Honest exception — one shared-module extraction (10) was slower through DSH (multi-file rewrite round-trips). Nothing like it reappeared in the hard batch.
Reproduce:
DEEPSEEK_API_KEY=sk-... node tests\bench\run-bench.mjs AB 01-50 # both arms, 100 tasks
DEEPSEEK_API_KEY=sk-... node tests\bench\run-bench.mjs AB 51-100 # (range filter)
DEEPSEEK_API_KEY=sk-... node tests\e2e-headless.mjs # real E2E (A/B/C/D)
DEEPSEEK_API_KEY=sk-... node tests\long-horizon-e2e.mjs # multi-delegation loopKeys only ever enter a temp
mcp.jsoninside a sandbox, deleted on exit — never written to the repo, never printed.
Tools
One tool family, split by responsibility so the parent agent picks by intent (tool name + description are the model's decision input):
Tool | Use it for | Constraint |
| generic self-contained tasks | none — everything is up to your task text |
| read-only analysis: read files, trace call flows, "find where X is used" | the agent is instructed to never modify files or run side-effecting commands |
| modifying code: bug fixes, refactors, migrations, well-specified implementations | the agent verifies (when the task names a check) and lists every file it changed |
| running commands: test suites, build scripts, environment queries | the agent reports full output + exit code, leaves source files alone |
| environment diagnostics: DSH resolution, CLI version, model config, timeout, key presence | no DSH child process, no API key required |
All delegation tools share one schema: task (required), cwd (optional),
timeoutMs (per-call override of DSH_MCP_TIMEOUT_MS) and trackChanges
(default true).
Change tracking — the black box gets a tail. DSH's headless CLI only
returns its final message: no diff, no file list. Every delegation therefore
snapshots your workspace before and after and appends a [mcp] block to the
result, so the parent can see what the delegation actually touched:
<DSH final output>
[mcp] exitCode: 0
[mcp] durationMs: 45210
[mcp] cwd: D:\workspace\foo
[mcp] changedFiles: 2
[mcp] M src/store.js (modified)
[mcp] A src/store.test.js (added)Use trackChanges: false (or DSH_MCP_TRACK_CHANGES=0) to skip snapshots on
very large repositories. Dependency/build dirs (node_modules, .git,
dist, build, coverage, …) and hidden dirs are always excluded.
Category constraints are enforced via task templates, not the CLI — DSH's headless mode has no read-only flag. Change tracking is the safety net: if
dsh_investigatedid modify something anyway, the[mcp] changedFileslist exposes it and the parent can check the files itself.
Deployment
dsh-mcp is a standard MCP stdio server. Any client that speaks MCP can
host it — Claude Code, OpenAI Codex, Cursor, VS Code, Claude Desktop, or your
own tooling. The server and the dsh tool family are identical everywhere;
only the registration step differs. Claude Code is the client we validated
end-to-end.
Claude Code (one command — the example)
claude mcp add dsh `
--transport stdio `
--env DEEPSEEK_API_KEY=sk-... `
-- node D:\path\to\dsh-mcp\dist\index.js
claude mcp listOpenAI Codex
Codex loads MCP servers from its config at %USERPROFILE%\.codex\config.toml
(project-level: .codex\config.toml). Append:
[mcp_servers.dsh]
command = "node"
args = ["D:\\path\\to\\dsh-mcp\\dist\\index.js"]
env = { DEEPSEEK_API_KEY = "sk-..." }Restart codex, then just ask — e.g. "Use the dsh_investigate tool to read
the README and package.json and report the project name." Codex cannot see
inside DSH (it is a black box to the host), which is exactly why every
delegation returns the [mcp] changedFiles block — the parent learns what
the delegation touched even when the host is not Claude Code.
Any other MCP client
Point your client at dist\index.js with the same env vars. Most clients
accept a JSON mcpServers block (Claude Code project-level config, Cursor
mcp.json, VS Code, Claude Desktop, …):
{
"mcpServers": {
"dsh": {
"command": "node",
"args": ["D:\\path\\to\\dsh-mcp\\dist\\index.js"],
"env": { "DEEPSEEK_API_KEY": "sk-..." }
}
}
}Don't commit the key. The automation scripts delete their temp config before exiting.
Where can DSH be installed?
DSH is located in exactly four places, checked in order — the server never
looks at PATH:
DSH_ROOTenv var — explicit override, wins unconditionallyA sibling checkout next to this package:
..\deepseek-harnessA child checkout inside this package:
.\deepseek-harnessAn installed CLI package under the DSH home:
%USERPROFILE%\.dsh\profiles\node_modules\@deepseek-ai\dsh(DSH_HOMEoverrides the home directory)
So you can install DSH anywhere — a sibling checkout, a dedicated tools
directory, a different drive — and point DSH_ROOT at it. Either layout
works: a source checkout (build its CLI first: pnpm install && pnpm run build)
or an installed CLI package (<root>\lib\bin.js). Anything outside these four
locations is simply not discovered; the error message tells you to set
DSH_ROOT.
# register with a DSH that lives in your own directory
claude mcp add dsh `
--transport stdio `
--env DEEPSEEK_API_KEY=sk-... `
--env DSH_ROOT=D:\tools\deepseek-harness `
-- node D:\path\to\dsh-mcp\dist\index.jsEnvironment variables
Variable | Meaning |
| Required. Passed to DSH through the environment. |
| Optional. Point at a DSH checkout / installed CLI. |
| Optional. DSH home (default |
| Optional. Child timeout; unset = no timeout. |
| stderr diagnostics ( |
Troubleshooting
Symptom | Fix |
| Set |
| In the DSH checkout: |
| Re-add with |
Wrong workspace | Resolution: tool |
Delegation fails, can't tell why | Run |
How to delegate
Every delegation tool takes one task argument (see Tools for
the full family). Each call spawns a brand-new DSH agent that runs in
your project workspace and returns its final result. DSH has no memory
across calls — that's the design (no session to corrupt) — and it sets the
one rule that matters:
Make every delegation self-contained. Give DSH everything the subtask needs: the file paths, the context, the expected result. Never write "as above", "like before", or "that file I mentioned earlier" — DSH cannot see your conversation.
Good vs. bad delegation
The same task, written two ways:
❌ "Fix the bug in the store module and verify."
— Which module? What bug? Verify how? DSH has no memory of "the" bug.
✅ "In src/store.js, createOrder() (around line 42) computes the order total
without the tax field. Fix it so the total includes tax. Then run
node src/tests/order.test.js and report the output."
— Self-contained: file, bug, expected behavior, verification command.Three templates that cover most delegations
1. Investigation — DSH reads the files, the parent reads the report
Read src/modules/a.js, b.js and c.js and report: (1) every exported
function signature, (2) all TODO/FIXME comments with line numbers,
(3) where each module is imported from. Don't modify anything.2. Fix + verify — the parent decides, DSH executes and checks
In src/utils.js, slugify(" hello ") returns "hello " instead of "hello"
(leading whitespace leaks through). Fix it, then run
node src/test/utils.test.js and report which assertions pass.3. Batch edit — one delegation instead of N read/edit round-trips
Across the project, replace every occurrence of config.port with
config.serverPort in all .js files (skip node_modules). List each file
you changed, one line per file.When to delegate — and when not to
Delegate (token-heavy, self-contained) | Keep with the parent (needs context) |
Read + summarize N files | Weighing two architectures |
Multi-file rename / migration / refactor | Deciding what to build next |
Run a suite / script and report output | A debugging conversation that evolves |
Implement a well-specified function | Anything whose goal is still unclear |
What a delegation looks like in a session
You: The login flow is broken. Have DSH trace login.js → session.js → db.js
under src/auth/ and report where an error could be swallowed, with
line numbers. Don't read the files yourself.
DSH: Found it: src/auth/session.js:37 catches the error and returns null
instead of rethrowing, so login.js treats the failure as "not logged
in". Three files read, nothing modified.Cost model
Fast and cheap both come from the model on the DSH side: deepseek-v4-flash.
Early development ran entirely on flash (parent and DSH alike); the 100-task
benchmark above runs the heterogeneous combo parent = deepseek-v4-pro[1m],
DSH = deepseek-v4-flash (arm B uses the same pro parent without the plugin,
so the delta is the plugin). The Claude Code kernel in the benchmark is
DeepSeek's model — ANTHROPIC_MODEL: deepseek-v4-pro[1m] — not an Anthropic
one; the claims below only assume a strong parent, regardless of vendor.
Faster — token-heavy subtasks (file reads, exploration loops) run batched in DSH instead of serially in the parent session; measured −36% average wall time (76.5s vs 120.2s).
Cheaper — the heavy token spend runs at deepseek-v4-flash rates, and the parent's token budget is minimized by delegation (pure reasoning).
Zero migration —
delegate_to_dshis model-agnostic end to end.
Verified
Layer | Coverage | Status |
Unit | 42 vitest (DSH discovery / workspace / runner / change tracking / tools) | ✅ |
Real E2E (Claude Code) | subdir launch · Chinese · spaces in path · real API | ✅ |
Long-horizon | plan → investigate → decide → fix → read-back → verify | ✅ 5/5 |
A/B benchmark | 100 tasks × 2 arms (accuracy + runtime, p<0.001) | ✅ |
DSH write probe | headless profile can write files | ✅ |
Design & limitations (V0.x)
Synchronous wait-for-result — no streaming, no background, no polling (ENGINEERING §0/§23). A long task is one longer MCP call; no timeout by default.
Stateless workers — each delegation is a fresh DSH process (fresh startup cost; fine for simple tasks).
Concurrent delegations edit the same workspace at their own risk — prefer read-only / independent subtasks.
Windows-first, MIT licensed. Docs & engineering rationale:
DSH_MCP_ENGINEERING(1).md(§0–§40).
Disclaimer
dsh-mcp is an independent open-source project. It is not affiliated with,
endorsed by, or sponsored by OpenAI, Anthropic, or DeepSeek. DeepSeek Harness
is DeepSeek's open-source project; this adapter merely integrates with its CLI
over the MCP protocol. All product names and trademarks belong to their
respective owners.
License
MIT
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
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 Connectors
A paid remote MCP for OpenAI Codex agent coordination MCP, built to return verdicts, receipts, usage
- DazbenchOAuthapp.dazbench
Task management your AI agents can actually run. One line becomes a context-ready task over MCP.
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Your org's AI agents, tasks, runs, search, and brain files as MCP tools and resources.
Related MCP Servers
- AlicenseAqualityAmaintenanceMCP executor lane for Claude Code, Codex, and Hermes Agent that offloads mechanical repo tasks like edits, tests, and commits to a cheaper or local model.46234MIT
- AlicenseNot gradedqualityCmaintenanceRemote execution layer for agentic systems exposing 64 production tools via MCP for file, network, system, text, git, crypto, and monitoring operations.MIT
- AlicenseBqualityBmaintenanceA fast, hardened MCP server that lets any MCP host drive the Cursor Agent CLI for heavy repo-aware tasks like search, analysis, planning, and edits, keeping host context small and token costs low.101MIT
- AlicenseNot gradedqualityAmaintenanceExposes DeepSeek Harness agent capabilities as an MCP server, letting any MCP client drive Harness to execute real coding tasks with structured results, context isolation, and parallel execution.17411MIT
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/Mr-potato-123/dsh-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server