DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Mcp Settings — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
M

@dingyiliao/dsh-mcp-settings

Mcp Settings

DSH bundle for managing stdio and Streamable HTTP MCP servers from Settings

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:dingyiliao/dsh-bundle-mcp-settings#32f4b5d12ea729371e9820dced444870cb9c2826
READMECompatibilityVersions

Compatibility and provenance

Mcp Settings is published as @dingyiliao/dsh-mcp-settings and currently resolves to version 0.1.1. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/17/2026

Versions

0.1.1stable
9/17/2026

Related plugins

Loading related plugins…

Latest
0.1.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/17/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in integrations-communication.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseRemote Web Ui@linxin666/dsh-remote-web-uiScan-to-pair remote access for the dsh web GUI that shares one official interface: a QR beside the settings button pairs phones and PCs into the same Web GUI (a portrait-touch adaptation layer for phones, full desktop on PCs) through one-time tokens and rPocketdsh-pocketPut DeepSeek Harness in your pocket: one package, one settings page, and scan a QR code on your phone to access DSH on your computer in sync (LAN + public network, real-time screen mirroring).DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.

README

DSH MCP Settings Bundle

English | 简体中文

An installable DeepSeek Harness bundle for managing multiple stdio and Streamable HTTP MCP servers from Settings → Plugins → MCP, then exposing their tools to the Agent at runtime.

What is included

  • A Host plugin that registers the mcp settings namespace and creates one official @deepseek-ai/dsh-mcp-client Fiber for each enabled server.
  • A Client plugin that contributes an MCP management tab to the existing settings.plugins.tab slot.
  • A bundle patch that installs both faces as one Profile feature.

This bundle does not reimplement MCP. It manages the configuration and lifecycle of DSH's existing MCP client. Editing one server replaces only that server's Fiber; unchanged connections stay mounted.

Compatibility

The current release targets DeepSeek Harness 0.1.6-alpha.1 and compatible versions of the same APIs. The target Profile must already provide:

  • @deepseek-ai/dsh-settings and a writable settings provider;
  • @deepseek-ai/dsh-mcp-client, tools, and mcp-resources;
  • the Web/Desktop Client Settings, Plugins, Remotes, and Slots foundation.

The official Web/Desktop compositions currently provide these dependencies. They are not downloaded or replaced by this bundle. Built Host and Client artifacts are committed, so installing from GitHub does not run prepare or another package installation script.

Install

dsh plugin --profile web add github:dingyiliao/dsh-bundle-mcp-settings#v0.1.1

Restart DSH after installation. A version tag is convenient; for stricter supply-chain pinning, replace v0.1.1 with its full commit SHA.

The packaged Desktop application currently accepts npm-registry packages only, not a direct github: spec. That path requires publishing this bundle to npm or adding GitHub-source support to Desktop.

Configuration and persistence

The bundle patch only mounts the manager:

- insert:
    - id: managed-mcp-settings
      name: '@dingyiliao/dsh-mcp-settings'

It intentionally does not store MCP servers in the patch. The plugin schema supplies an empty default when no settings exist, while edits made in the UI are persisted by the Profile's settings provider under the mcp namespace. Resolution follows this order:

schema defaults → composition base → persisted user section

Therefore restarting DSH, reloading the bundle, or mounting the same patch does not reset saved servers.

The persisted document uses mcp.servers:

mcp:
  servers:
    filesystem:
      enabled: true
      transport: stdio
      command: npx
      args:
        - -y
        - '@modelcontextprotocol/server-filesystem'
        - /path/to/workspace
      env: {}
      cwd: ''
      url: ''
      headers: {}
      toolCallTimeoutMs: 60000
      failOnStartupError: false
      maxInstructionBytes: 32768
      reconnect:
        enabled: true
        initialDelayMs: 500
        maxDelayMs: 30000
        maxAttempts: 10

env and HTTP headers use the settings schema's secret role. Settings reads return only which secret keys exist; values are never sent to the browser. An existing NAME= entry in the editor means “keep this secret unchanged.”

MCP server processes and their installation scripts run outside the Agent sandbox. Configure only commands, packages, and remote endpoints you trust.

Development

pnpm install
pnpm check

The Client artifact follows DSH's dynamic-module format: lib/client.js calls window.__ModuleLoader__.load(...) and resolves React, Cordis, and UI primitives from the host module table. Built Host and Client artifacts are committed so a GitHub-spec installation can load them directly.

License

MIT