dsh-mcp-bridge
Click on "Deploy 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-bridgeSearch the codebase for 'FIXME' and show the files with matches."
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-bridge
Expose DeepSeek Harness tools as a standard MCP Server — drive
dshfrom Claude Code, Codex, OpenClaw, or any MCP-compatible client.
dsh-mcp-bridge turns your running DeepSeek Harness into a Model Context Protocol server over streamable HTTP. Any MCP client can discover and call the real DSH tools (file read, glob, grep, web search…) through a safe allowlist — while your workspace keeps DSH's own sandbox and approval pipeline on every call.
Zero dependencies. Zero build step. Install and go.
Why
Official | dsh-mcp-bridge (this) | |
Direction | DSH → external MCP servers (bring tools in) | External MCP clients → DSH (expose tools out) |
Transport | stdio / streamable-http client | streamable HTTP server at |
Client UI | none (YAML config) | — (roadmap: management panel) |
The official client answers "how do I use MCP servers in dsh?". This project answers the reverse: "how do other agents use dsh as a tool provider?".
Related MCP server: dsh-harness-mcp-server
Quick start
1. Install the bundle
# from a checkout
dsh plugin --profile <name> add ./mcp-bridge
# or from GitHub (zero build — plain JS)
dsh plugin --profile <name> add github:you/dsh-mcp-bridge2. Configure (optional)
The bundle's cordis.patch.yml already mounts the server on /mcp with the safe default allowlist. Tune it in your profile's cordis.patch.yml:
- id: mcp-bridge
config:
path: /mcp # endpoint path
allowlist: # DSH tools exposed to MCP clients
- read
- glob
- grep
- web_search3. Connect any MCP client
# Claude Code
claude mcp add --transport http dsh http://127.0.0.1:3080/mcp
# Any MCP client / SDK
# URL: http://127.0.0.1:3080/mcpTools appear as dsh_<name> (e.g. dsh_read, dsh_glob, dsh_grep, dsh_web_search).
Security model
Default allowlist exposes only read-only, low-risk tools (
read,glob,grep,web_search).Hard denylist (
pwsh,write,edit, subagent orchestration, cordis control…) can never be exposed — even if misconfigured into the allowlist.Every call still runs through DSH's own sandbox + approval pipeline.
Serve on loopback (
127.0.0.1) only; do not bind0.0.0.0unless you know the network is trusted.
Bidirectional: bring tools in too
dsh-mcp-bridge covers the out direction (DSH → MCP clients). For the in direction (attach third-party MCP servers to DSH), use the official @deepseek-ai/dsh-mcp-client — one line per server in your cordis.patch.yml:
- id: mcp-github
name: '@deepseek-ai/dsh-mcp-client'
config:
serverName: github
transport: stdio
command: npx
args: ['-y', '@modelcontextprotocol/server-github']Your model then sees mcp__github__* tools alongside the dsh_* tools this bridge exposes. Together they make DSH a full citizen of the MCP ecosystem:
Claude Code ──HTTP──▶ dsh-mcp-bridge ──▶ DSH tools (read/glob/grep/web_search)
DSH model ──stdio─▶ dsh-mcp-client ──▶ any MCP server (GitHub/filesystem/…)Full example: examples/bidirectional.cordis.patch.yml · Claude Code quickstart: examples/claude-code-connect.md
How it works
MCP client ──streamable HTTP──▶ /mcp (webServer route)
│ JSON-RPC 2.0 (initialize / tools/list / tools/call)
▼
dsh-mcp-bridge protocol layer (zero-dep, pure JS)
│ allowlist + denylist
▼
agent-scoped ctx.tools (execute with real sandbox)The bridge enumerates tools through the agent-scope view of ctx.tools (agents are scope keys in dsh), so the tool set you expose matches what your agents actually have — no hardcoded schemas.
Development
npm test # node:test, zero dependencies (38 tests)
npm run demo # live demo against a running DSH at http://127.0.0.1:3080/mcp
npm run demo:mock # e2e: repo code + official MCP SDK client (no DSH needed)
node .mcp-test/e2e-stateless.mjs [url] # 2026-07-28 stateless-protocol e2eLayout:
src/protocol.js— JSON-RPC 2.0 message handling (pure, testable)src/catalog.js— allowlist/denylist tool projectionsrc/transport.js— streamable HTTP handler (POST JSON, GET SSE)src/dsh.js— agent-scoped tools access + result mappingsrc/index.js— Cordis plugin entry (apply(ctx, config))
Roadmap
notifications/tools/list_changedwhen the DSH tool set changes (SSE broadcast)Client-side management panel (server status, tool tree, connectivity self-test) — see
src/client.jsMCP 2026-07-28 stateless mode: no handshake,
server/discover, request_metaversioning,subscriptions/listenstreamConfigurable
serverInfo, pagination supportOptional exposure of Resources/Prompts
Protocol compatibility
Client protocol | Behavior |
2025-06-18 |
|
2026-07-28 | stateless: no handshake, version in request |
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Exposes FEDLIN's public security scanners as agent-callable tools over Streamable HTTP.
Host your MCP tool over streamable HTTP in one command.
Remote MCP server exposing SMI Aware tools, resources, and skills over Streamable HTTP.
MCP server exposing the Backtest360 engine API as tools for AI agents.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceExposes SmartCLI's built-in agent tools (file operations, code search, shell commands, web search, memory, and snapshots) as MCP endpoints, allowing external clients to leverage them over stdio or HTTP.1MIT
- 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.74 npm12MIT
- AlicenseNot gradedqualityCmaintenanceIn-process DeepSeek Harness plugin that exposes a local Streamable HTTP MCP server, allowing MCP clients like Codex to submit tasks executed by DSH child agents using DSH's existing tools.164 npmMIT
- FlicenseNot gradedqualityAmaintenanceEnables MCP-compatible AI clients to invoke CLI-driven agent tools over Streamable HTTP, including shell execution, file operations, patching, image viewing, web search, and nested agent tasks, with permission modes and real-time progress streaming.-