YZz-S/dsh-dshx0

dshx

MCP client hub (stdio / Streamable HTTP / SSE) with skill, command, memory and prompt management for the DeepSeek Harness Web GUI

AI Analysis

核心用途是连接和管理各种 MCP 服务。适合需要扩展大模型工具链、接入外部 API 或本地服务的开发者和高级用户。

Package
dshx
Version
0.1.0
License
MIT
Last updated
Aug 15, 2026

Install

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:YZz-S/dsh-dshx

MCP server configuration

Server configs live in $DSH_HOME/dshext/mcp.json (managed by the console or the model tools) — example:

{
  "servers": [
    { "id": "github", "name": "GitHub", "transport": "stdio",
      "command": "npx", "args": ["-y", "@modelcontextprotocol/server-github"],
      "env": { "GITHUB_TOKEN": "…" } },
    { "id": "web", "name": "Web", "transport": "streamable-http",
      "url": "http://localhost:3000/mcp",
      "headers": { "Authorization": "Bearer …" } },
    { "id": "legacy", "name": "Legacy SSE", "transport": "sse",
      "url": "http://localhost:3001/sse" }
  ]
}