drfccv/dsh-mcp-center1

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。

패키지
dsh-mcp-center
버전
0.1.0
라이선스
MIT
최근 업데이트
2026. 8. 14.

설치

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:drfccv/dsh-mcp-center

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.