YZz-S/dsh-dshx0

dshx

支持 stdio、Streamable HTTP 和 SSE 的 MCP 客户端中心,为 DeepSeek Harness Web 界面提供技能、命令、记忆和提示词管理。

AI 分析

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

套件
dshx
版本
0.1.0
授權
MIT
最近更新
2026年8月15日

安裝

$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" }
  ]
}