dshx
MCP client hub (stdio / Streamable HTTP / SSE) with skill, command, memory and prompt management for the DeepSeek Harness Web GUI
AI 分析
核心用途是连接和管理各种 MCP 服务。适合需要扩展大模型工具链、接入外部 API 或本地服务的开发者和高级用户。
インストール
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:YZz-S/dsh-dshxドキュメント
README 全文を読む ↗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" }
]
}