dsh-mcp-center
MCP Center: a settings-driven MCP server manager for the DeepSeek Harness. Register Streamable HTTP (no-auth / Bearer token / custom headers) or local stdio MCP servers from a dedicated Settings page; their tools publish as mcp__<name>__<tool> to the model. Self-contained MCP client, no external MCP SDK dependency.
AI 分析
核心用途是扩展模型的能力边界。适合需要对接外部工具生态(如本地文件系统、自定义 Web 服务)的开发者。无需安装外部 MCP SDK。
インストール
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:drfccv/dsh-mcp-centerドキュメント
README 全文を読む ↗Configuration storage
Server configs live in ~/.dsh/mcp-center.json:
{
"servers": [
{ "id": "…", "name": "web", "type": "http", "url": "http://localhost:3000/mcp", "authMode": "none" },
{ "id": "…", "name": "fs", "type": "stdio", "command": "npx", "args": ["-y", "@modelcontextprotocol/server-filesystem", "/tmp"] }
]
}
⚠️ Bearer tokens are stored here in plain text — treat this file as a secret.