Skip to main content
Glama

dsh-mcp โšก

Stop paying flagship-model prices for file reads.

A cheap, fast execution layer for MCP agents โ€” powered by a local DeepSeek Harness.

Agentic coding tools are expensive and slow for one reason: they let a flagship model read 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, at DeepSeek pricing, on your machine.

Platform: Windows 11 Protocol: MCP stdio License: MIT

Works with any MCP client ยท tested end-to-end with Claude Code

๐ŸŒ English ยท ็ฎ€ไฝ“ไธญๆ–‡ ยท ๆ—ฅๆœฌ่ชž


Why: fast and cheap, by design

The pain. Long-horizon, multi-file work is where agentic tools bleed money and time. Codex and Claude Code do it by letting the flagship model grind through every file itself: one Read per file, exploration loops, context that grows and drifts. You pay flagship 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 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 dsh-mcp

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 moved off the flagship model. Full report ยท Reproduce it

Related MCP server: HermitAgent

How it works

architecture

The prompt used to generate this is in docs/architecture-image-prompt.md.

  • Not Claude-Code-specific. dsh-mcp is a standard MCP stdio server. Any client that speaks MCP can use it โ€” Claude Code is simply 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 .cmd shims, spaces-in-paths just work.

Quick start

Step 1 โ€” build once

cd dsh-mcp
npm install
npm run build                      # โ†’ dist\index.js

Step 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 listed

This 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_dsh not showing up? Re-run claude 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 the ANTHROPIC_MODEL env 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. without dsh-mcp ยท dataset: tests/bench/tasks.mjs

with dsh-mcp

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 loop

Keys only ever enter a temp mcp.json inside 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

delegate_to_dsh

generic self-contained tasks

none โ€” everything is up to your task text

dsh_investigate

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

dsh_fix

modifying code: bug fixes, refactors, migrations, well-specified implementations

the agent verifies (when the task names a check) and lists every file it changed

dsh_execute

running commands: test suites, build scripts, environment queries

the agent reports full output + exit code, leaves source files alone

dsh_status

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_investigate did modify something anyway, the [mcp] changedFiles list exposes it and the parent can check the files itself.

Deployment

dsh-mcp is a standard MCP stdio server. Nothing in it is Claude-Code-specific: any client that speaks MCP can host it โ€” Claude Code, OpenAI Codex, Cursor, VS Code, Claude Desktop, or your own tooling. Claude Code is simply the client we validated end-to-end. The server and the dsh tool family are identical everywhere; only the registration step differs.

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 list

OpenAI 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:

  1. DSH_ROOT env var โ€” explicit override, wins unconditionally

  2. A sibling checkout next to this package: ..\deepseek-harness

  3. A child checkout inside this package: .\deepseek-harness

  4. An installed CLI package under the DSH home: %USERPROFILE%\.dsh\profiles\node_modules\@deepseek-ai\dsh (DSH_HOME overrides 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.js

Environment variables

Variable

Meaning

DEEPSEEK_API_KEY

Required. Passed to DSH through the environment.

DSH_ROOT

Optional. Point at a DSH checkout / installed CLI.

DSH_HOME

Optional. DSH home (default %USERPROFILE%\.dsh).

DSH_MCP_TIMEOUT_MS

Optional. Child timeout; unset = no timeout.

DSH_MCP_DEBUG=1

stderr diagnostics ([dsh-mcp] dshRoot=... cli=...).

Troubleshooting

Symptom

Fix

Unable to locate DeepSeek Harness

Set DSH_ROOT, or install the DSH CLI (npx @deepseek-ai/dsh)

CLI build artifact is missing

In the DSH checkout: pnpm install && pnpm run build

DEEPSEEK_API_KEY is not configured

Re-add with --env DEEPSEEK_API_KEY=..., restart Claude Code

Wrong workspace

Resolution: tool cwd โ†’ CLAUDE_PROJECT_DIR โ†’ MCP_WORKSPACE_DIR โ†’ server cwd

Delegation fails, can't tell why

Run dsh_status first โ€” it reports DSH resolution, CLI version, model config, timeout and key presence

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

Early development ran on deepseek-v4-flash for 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 model; the parent-side claim below assumes a strong parent regardless of vendor. The architecture is the point: the parent's per-turn token spend stays tiny (pure reasoning), while token-heavy work runs on the DSH side at DeepSeek pricing.

This is what makes a flagship parent (e.g. Claude Fable 5 / Sonnet 5) both faster and cheaper when combined with dsh-mcp:

  • Faster โ€” every raw-arm failure in the benchmark is a reasoning failure; a stronger parent reasons once instead of retrying, and DSH workload doesn't change.

  • Cheaper โ€” the parent's token budget is already minimized by delegation, so a higher-priced model still costs less than a raw agent paying full token volume for file reads and exploration loops.

  • Zero migration โ€” delegate_to_dsh is model-agnostic end to end.

The flagship-model claim is architecture + benchmark inference; swap the parent and re-run the same suite to verify.

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

A
license - permissive license
-
quality - not tested
C
maintenance

Maintenance

โ€“Maintainers
โ€“Response time
โ€“Release cycle
โ€“Releases (12mo)
Commit activity

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

  • A
    license
    A
    quality
    C
    maintenance
    MCP 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.
    5
    205
    4
    MIT
  • A
    license
    B
    quality
    B
    maintenance
    A 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.
    10
    MIT

View all related MCP servers

Related MCP Connectors

  • A paid remote MCP for OpenAI Codex agent coordination MCP, built to return verdicts, receipts, usage

  • OCR, transcription, file extraction, and image generation for AI agents via MCP.

  • Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.

View all MCP Connectors

Latest Blog Posts

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