返回插件市场

dsh-mcp-mgr

连接与集成

yangfch3/dsh-mcp-mgr

DeepSeek Harness 的 MCP 服务器管理器:发现工作区 mcp.json 文件,热同步 MCP 服务器,并提供网页设置界面进行管理。

  • deepseek-harness
  • dsh
  • dsh-plugin
  • dsh-plugins
  • mcp
GitHub Stars
6GitHub
浏览量
0DSH Plugin Hub
Forks
1GitHub
开放问题
0GitHub Issues
Manifest 版本
0.1.5dsh-mcp-mgr
最近推送
2026年9月2日GitHub
许可证
NOASSERTIONTypeScript
插件类型
Host运行于 DSH Host

验证与兼容性

这里展示目录实际采集到的证据;未声明的信息会明确标为未知。

运行时已验证
01精确来源: npm · dsh-mcp-mgr@0.1.502验证时间: 2026年9月3日03验证版本: 0.1.0-rc.7
当前版本兼容性
已在当前目录版本验证
声明的 Harness 范围
未声明
声明的平台
未声明
适用 Profile
web
构建授权
未检测到需要
权限声明
未声明
外部服务
未声明
遥测声明
未知
未发现已知风险标记

这不是安全背书;安装前仍应查看源码、权限和配置。

查看证据与判定范围

验证仅覆盖标出的来源、版本和 Harness 环境,不代表未来版本仍然兼容。

  • dsh-mcp-mgr@0.1.5
  • 插件已在隔离环境完成加载检查。

README

查看源文件

dsh-mcp-mgr

English | 中文

A workspace-level MCP manager for DeepSeek Harness: it reads MCP servers from each workspace's .dsh/dshmm/mcp.json, registers their tools dynamically, and provides a management tab in the Web settings UI.

MCP servers tab

Choose your workflow

UserEntry pointSource checkouts required
Regular usernpm package + npx @deepseek-ai/dshNeither deepseek-harness nor this repository
Source developerdeepseek-harness source + this repository sourceSee Source Developer Guide

Regular users: npm package

Install and start

npx @deepseek-ai/dsh plugin --profile web add dsh-mcp-mgr@latest
npx @deepseek-ai/dsh web

Run the install command again to update:

npx @deepseek-ai/dsh plugin --profile web add dsh-mcp-mgr@latest

Uninstall:

npx @deepseek-ai/dsh plugin --profile web remove dsh-mcp-mgr

Workspace configuration

Create .dsh/dshmm/mcp.json at the workspace root:

{
  "mcpServers": {
    "my-http-server": {
      "type": "http",
      "url": "http://127.0.0.1:8090/mcp"
    },
    "my-stdio-server": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "<mcp-server-package>"]
    }
  }
}

Rules:

  • A missing type is treated as Streamable HTTP; ${VAR} environment expansion is supported.
  • A stdio server without cwd uses the workspace root.
  • serverName is globally unique; duplicates are shown as conflicts.
  • Set "enabled": false to disable an entry without removing it; absent means enabled.

Behavior and limits

  • Workspace tools use the mcp__<serverName>__<tool> naming convention.
  • Settings strict mode is used to mount only the selected workspace's servers.

Source developers

When modifying both deepseek-harness and this plugin from source, see the Source Developer Guide. Both repositories may be anywhere; they do not need to be siblings or use fixed paths.

Design notes live in Doc/requirements.md.

评论

0
最新优先