avaritiachaos/dsh-plugin-mcp0

@shion-lab/dsh-plugin-mcp

用于 DeepSeek Harness 的 Anthropic 模型上下文协议(MCP)客户端桥接插件。

AI 分析

核心用途是让 DSH 能够连接并调用各类 MCP 服务(如 GitHub、SQLite 等)。适合需要扩展 AI 外部工具能力的进阶用户。需要在 cordis.yml 中配置服务器参数。

包名
@shion-lab/dsh-plugin-mcp
版本
0.1.2
许可证
MIT
最近更新
2026年8月16日

安装

此插件尚未提供可验证的 bundle,或兼容性检查未通过。请先阅读仓库说明。 阅读完整 README ↗

📦 Installation & Usage

npm install -g @shion-lab/dsh-plugin-mcp

In cordis.yml:

plugins:
  "@deepseek-ai/dsh": {}
  "@shion-lab/dsh-plugin-mcp":
    servers:
      github:
        command: "npx"
        args: ["-y", "@modelcontextprotocol/server-github"]
        env:
          GITHUB_PERSONAL_ACCESS_TOKEN: "your_token"
      sqlite:
        command: "uvx"
        args: ["mcp-server-sqlite", "--db-path", "./test.db"]