jiezeng2004-design/dsh-chatgpt-bridge9

dsh-chatgpt-bridge

MCP 桥接器:允许 ChatGPT 网页端通过官方 MCP 协议创建、查看、继续和控制 DeepSeek Harness 智能体会话,同时保留 DSH 的安全模型。

AI 分析

核心用途是打通 ChatGPT 与本地 DSH 的连接。适合希望在 ChatGPT 官方界面中直接调用和控制本地 DSH 代理及工具的用户。需要 Node.js >= 22。

套件
dsh-chatgpt-bridge
版本
0.3.0
授權
MIT
最近更新
2026年8月16日

安裝

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:jiezeng2004-design/dsh-chatgpt-bridge

DSH configuration

Only the plugin's own row config (defaults shown):

- id: chatgpt-bridge
  name: dsh-chatgpt-bridge
  config:
    transport: http        # http | stdio
    host: 127.0.0.1        # loopback only by default
    port: 3456
    authMode: token        # token | none (loopback only, not recommended)
    authToken: ''          # static token; empty falls back to env, then generated file
    authTokenEnv: DSH_CHATGPT_BRIDGE_TOKEN
    tokenFile: ''          # default $DSH_HOME/chatgpt-bridge.token
    resultMaxChars: 8000
    resultMaxItems: 50
    sessionMaxItems: 20
    sessionMaxChars: 4000
    logLevel: info

Logs go to $DSH_HOME/chatgpt-bridge.log (redacted) and never to stdout, so the stdio transport stays clean.