hermes-dsh-bridge
Provides a bridge between Hermes Agent and DeepSeek Harness (DSH), allowing Hermes to dispatch one-shot or continuable tasks to DSH with visible UI sessions, and enabling DSH to import, consult, and mirror Hermes sessions, personas, inbox, and project memory.
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., "@hermes-dsh-bridgeDispatch a disk space check to DSH and show it in the sidebar"
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.
hermes-dsh-bridge
Hermes Agent ↔ DeepSeek Harness (DSH) 桥:让 Hermes 把任务派发给 DSH 执行, 并在 DSH 侧边栏以 UI 可见会话 实时观看执行过程。
主线能力:
Hermes → DSH 派单 —
POST /mcp/collabJSON-RPC:dispatch_task(one-shot / continuable),返回真实 token 用量,支持任务信封、知识切片、项目记忆注入。可见派单 (visible dispatch) — 默认把 one-shot 任务落地为 DSH 侧边栏可见的根会话(不是隐藏子代理):你能亲眼看到 agent 一步步执行 SSH、改文件、跑命令。
DSH → Hermes 工具 — 10 个工具:
list_hermes_sessions、import_hermes_session、load_hermes_persona、consult_hermes、hermes_inbox、hermes_inbox_append、load_hermes_project_memory、mirror_session_to_hermes、session_mirror、dispatch_status、rotate_outbox_now。会话镜像 — 把任意 Hermes 会话作为原生 DSH 会话继续对话(side-by-side)。
MCP 工具暴露 — 通过
dsh-mcp-client把外部 MCP server(如 hermes-web)暴露给 DSH 子代理。
快速开始
前置:DSH Desktop >= 0.7.x、Node >= 22、Hermes Agent(任意版本,只要有会话目录)。
# 1. 安装插件
dsh plugin --profile web add hermes-dsh-bridge
# 2. 创建磁盘连接(源码方式)
# 把本仓库 clone 到本地,在 profile 的 package.json dependencies 里
# 用 "link:" / junction 指向 packages/dsh-hermes-link
# 3. 配置 Hermes 家目录(必须与你的 Hermes 安装一致)
$env:HERMES_HOME = 'C:\Users\<you>\AppData\Local\hermes' # Windows
# 或
export HERMES_HOME="$HOME/.hermes" # Linux/macOS启动 DSH Desktop 后,插件健康检查:
curl http://127.0.0.1:<port>/mcp/collab/health
# {"ok":true,"version":"0.5.1","hermes_home":"...","importer_ready":true,...}DSH Desktop 每次启动 HTTP 端口随机;从
harness.log尾部取dsh web: http://127.0.0.1:PORT/?token=...获得当前端口与 token。
Related MCP server: dsh-web-mcp
派单示例
curl -X POST http://127.0.0.1:<port>/mcp/collab \
-H 'content-type: application/json' \
-H "cookie: dsh-auth=<token>" \
-d '{
"jsonrpc": "2.0", "id": "t1", "method": "tools/call",
"params": {
"name": "dispatch_task",
"arguments": {
"task_id": "demo-001",
"skill": "pwsh",
"task": "检查本机磁盘空间,汇报使用率",
"model": "deepseek/deepseek-v4-flash",
"visible": true
}
}
}'visible: true(默认)时,返回体带 visible_session_id 与 workspace_title——
打开 DSH 侧边栏对应工作区即可看到该会话实时执行。
环境变量
变量 | 默认 | 作用 |
|
| Hermes 会话/记忆根目录 |
|
| 子代理 LLM provider |
| 空 | 可见派单落地的 workspace(workspaceId/title/path 子串) |
| 空 | 给子代理的 SSH 直连提示(避免探测主机) |
| 空 | 子代理 HTTP 代理提示 |
| 空 | 时区提示(如 |
架构
┌─────────────┐ POST /mcp/collab (JSON-RPC) ┌─────────────────────┐
│ Hermes │ ──────────────────────────────▶ │ DSH Desktop │
│ Agent │ dispatch_task / followup │ ┌───────────────┐ │
└─────────────┘ ◀────────────────────────────── │ │ dsh-hermes- │ │
▲ run.result / consult │ │ link plugin │ │
│ │ └───────┬───────┘ │
│ MCP tools (list_hermes_sessions, │ │ creates │
└──────────────────────────────────────── │ UI-visible root │
import, mirror, consult ...) │ session (侧边栏) │
└─────────────────────┘安全模型
POST /mcp/collab由 DSH web token 鉴权(HERMES_LINK_TOKEN,当前auth: open仅供本地回环)。派单信封带 task_id 与 skill 白名单;子代理只能用一个工具(
toolFilter.allow=[skill])。amend/consult 协议带 nonce 认证;审计全量落盘
audit.jsonl。
文档
License
MIT。本项目代码继承自 dsh-hermes-link (MIT, Copyright (c) 2026 Tianbuyu-wwx),并在其之上继续演进。
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
Search and manage Hamster briefs, tasks, plans, and knowledge; trigger delivery from your agent.
19Human-input bridge for AI agents with voice-first answer links, MCP tools, and HTTP APIs.
Connect agents to 6DuckLearn memory, approvals, and runtime control.
Durable agent-to-agent handoffs and shared scratchpad for multi-agent workflows.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables MCP agents to delegate tasks to a local Hermes Agent for terminal, file, browser, and coding operations, and schedule recurring jobs.MIT
- AlicenseAqualityBmaintenanceAn MCP bridge that exposes DeepSeek Harness (DSH) web UI's cordis RPC API as stdio tools, enabling any MCP client to manage workspaces, create/resume sessions, send messages, and fetch session stats.51MIT
- AlicenseNot gradedqualityAmaintenanceMCP bridge enabling ChatGPT to create, view, and control DeepSeek Harness agent sessions, with session management, messaging, and approval tools.49015MIT
- AlicenseNot gradedqualityAmaintenanceEnables dispatching work to DeepSeek Harness agents from Claude Code/Codex, with native progress UI, tier policy, and vision/image generation through MCP tools.655132MIT