Gpt Dsh Bridge
FreeNot checkedMCP server bridging ChatGPT to DeepSeek Harness, exposing 13 tools for task submission, status tracking, result retrieval, project/session management, and human
About
MCP server bridging ChatGPT to DeepSeek Harness, exposing 13 tools for task submission, status tracking, result retrieval, project/session management, and human-in-the-loop approvals.
README
ChatGPT 网页驱动 DeepSeek Harness(DSH)自动化执行任务的桥梁。
GPT 是指挥者,DSH 是执行者。一条 MCP 协议把它们串起来。
English · 中文 | MIT License
快速开始
git clone https://github.com/baochaofan0404/gpt-dsh-bridge.git
cd gpt-dsh-bridge
pnpm install
pnpm build
pnpm start
然后通过 ChatGPT 开发者模式(Connectors → 添加 MCP)连接暴露的 https://<tunnel>/mcp 端点,即可在对话中用 dsh_task_submit 等工具驱动 DSH 执行任务。
架构
┌─────────────────┐ HTTPS MCP ┌──────────────────────────┐ ACP ┌──────────┐
│ ChatGPT Web │ ─────────────────► │ Bridge Orchestrator │ ───────────► │ DSH │
│ (MCP Host) │ │ (Node · Windows/WSL) │ stdio RPC │ (WSL) │
└─────────────────┘ │ │ └──────────┘
▲ │ · 13 MCP 工具 │
│ 结果回投(模型自然写入对话) │ · 任务状态机 │
│ │ · conversation↔session │
└───────────────────────────────────┘ 映射 + 持久化 │
核心设计原则:
- DSH 不动:复用现有 ACP 服务器,零侵入
- Bridge 是薄层:只做任务编排、状态管理和协议适配
- ChatGPT 侧通过原生开发者模式 MCP 接入(已在
E:\mcpgpt验证过通道)
MCP 工具契约(当前 13 个)
| 工具 | 用途 |
|---|---|
dsh_task_submit |
提交新任务,返回 taskId |
dsh_task_status |
查询任务状态 |
dsh_task_result |
获取任务最终结果 |
dsh_task_cancel |
取消运行中任务 |
dsh_task_revise |
基于当前结果修订并重新执行 |
dsh_task_approve |
人工审批 HUMAN_REQUIRED 任务 |
dsh_task_review |
人工评审任务结果 |
dsh_task_list |
列出项目下所有任务 |
dsh_project_create |
创建/切换工作区项目 |
dsh_project_status |
查看项目状态 |
dsh_session_list |
列出 DSH sessions |
dsh_session_archive |
归档完成 session |
dsh_session_rotate |
轮换 DSH session(上下文过长时) |
任务状态机
CREATED → SUBMITTED → RUNNING → SUCCESS → COMPLETED
↘ FAILED
↘ TIMEOUT
↘ CRASHED
↘ CANCELLED
↘ HUMAN_REQUIRED → (approve) → RUNNING
→ (reject) → CANCELLED
完整状态机定义见 designs/state-machine.md。
目录结构
gpt-dsh-bridge/
├── src/
│ ├── mcp/ # MCP server + 13 个工具实现
│ ├── task/ # TaskManager + TaskStore(SQLite)
│ ├── workspace/ # 项目/工作区管理
│ ├── errors.ts # BridgeError + error codes
│ └── config.ts # 配置加载
├── designs/ # 架构设计文档
├── docs/ # 用户文档
├── scripts/ # 启动/隧道脚本
└── recon/ # 侦察报告(原始研究材料)
依赖
- Node.js ≥ 22
- DeepSeek Harness(DSH)已安装并运行(
pnpm dsh --profile web) - OpenAI MCP Tunnel 或 cloudflared(HTTPS 隧道)
- ChatGPT Developer Mode(Pro/Plus/Enterprise)
License
MIT © 2026 baochaofan0404
Install Gpt Dsh Bridge in Claude Desktop, Claude Code & Cursor
unyly install gpt-dsh-bridgeInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add gpt-dsh-bridge -- npx -y github:baochaofan0404/gpt-dsh-bridgeStep-by-step: how to install Gpt Dsh Bridge
FAQ
Is Gpt Dsh Bridge MCP free?
Yes, Gpt Dsh Bridge MCP is free — one-click install via Unyly at no cost.
Does Gpt Dsh Bridge need an API key?
No, Gpt Dsh Bridge runs without API keys or environment variables.
Is Gpt Dsh Bridge hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Gpt Dsh Bridge in Claude Desktop, Claude Code or Cursor?
Open Gpt Dsh Bridge on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Notion
Read and write pages in your workspace
by NotionLinear
Issues, cycles, triage — from Claude
by LinearGoogle Drive
Search and read your Drive files
by Googlemindsdb/mindsdb
Connect and unify data across various platforms and databases with [MindsDB as a single MCP server](https://docs.mindsdb.com/mcp/overview).
by mindsdbfulcradynamics/fulcra-context-mcp
MCP server for accessing personal health and biometric data including sleep stages, heart rate, HRV, glucose, workouts, calendar, and location via the Fulcra Li
by fulcradynamicsaymericzip/intlayer
A MCP Server that enhance your IDE with AI-powered assistance for Intlayer i18n / CMS tool: smart CLI access, access to the docs.
by aymericziprinadelph/Agent-MCP
A framework for creating multi-agent systems using MCP for coordinated AI collaboration, featuring task management, shared context, and RAG capabilities.
by rinadelphWhenLabs-org/when
Developer toolkit: auto-detect stack for AI context files, catch port conflicts, validate .env schemas, spot docs drift, audit dependency licenses, and time cod
by WhenLabs-orgBeltran12138/wecom-docs-mcp-server
WeCom (Enterprise WeChat) document operations via MCP: create, read, and edit Docs and Smartsheets (9 tools). Fills the doc-CRUD gap — existing WeCom MCP server
by Beltran12138madbonez/caldav-mcp
Universal MCP server for CalDAV protocol integration. Works with any CalDAV-compatible calendar server including Yandex Calendar, Google Calendar (via CalDAV),
by madbonezCompare Gpt Dsh Bridge with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All productivity MCPs
