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 Matlab — DSH Plugin for DeepSeek Harness
← Plugins
M

dsh-mcp-matlab

Mcp Matlab

DSH plugin: bridge to the MATLAB MCP server (matlab-mcp-server-windows-x64)

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

npx -y @deepseek-ai/dsh plugin --profile web add github:yh01010/dsh-mcp-matlab#de538a74e3ffef53d541d9480a4447ccbbd56fa3
READMECompatibilityVersions

Compatibility and provenance

Mcp Matlab is published as dsh-mcp-matlab and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
9/5/2026

Versions

0.1.0stable
9/5/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
9/16/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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

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-baseIm@xmanrui/dsh-im把十一种 IM 渠道和公网 AI Office 接入本机 DeepSeek Harness。 Connect eleven IM channels and a public AI Office to a local DeepSeek Harness.Pocketdsh-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).Chat Importdsh-chat-importImport conversation history from 25+ AI coding agents into DeepSeek Harness as resumable sessions — tool calls, reasoning and results kept intact, with reverse export and sync. | 把 25+ AI 编程 Agent 的聊天记录导入 DeepSeek Harness 继续对话,保留工具调用、推理与结果,支持反向导出与同步。

README

dsh-mcp-matlab

DSH plugin: bridge a local MATLAB MCP server into DSH.

Under the hood it relies on the host's built-in @deepseek-ai/dsh-mcp-client: one instance connects to one MCP server and registers its tools on ctx.tools under mcp__matlab__<tool> (e.g. mcp__matlab__detect_matlab_toolboxes, mcp__matlab__evaluate_matlab_code).

Install

Either command (then restart dsh web):

dsh plugin --profile desktop add github:yh01010/dsh-mcp-matlab
dsh --profile desktop plugin add github:yh01010/dsh-mcp-matlab

Or add the package name dsh-mcp-matlab to the profile's package.json → dsh.profile.bundles and run pnpm install in the profile directory.

Configuration

This package deliberately carries no personal machine paths. The command/args in cordis.patch.yml are placeholders — set them to your own MATLAB MCP server executable and MATLAB installation root.

Recommended: override the row by id from your $DSH_HOME/cordis.patch.yml (the home user layer outranks bundle rows, so you never edit this repo):

# $DSH_HOME/cordis.patch.yml
- id: mcp-matlab
  name: '@deepseek-ai/dsh-mcp-client'
  config:
    serverName: matlab
    transport: stdio
    command: 'C:\Users\<your-username>\.local\bin\matlab-mcp-server-windows-x64.exe'
    args:
      - '--matlab-root=D:\path\to\your\matlab'
      - '--matlab-display-mode=nodesktop'
      - '--disable-telemetry'

Settings summary:

FieldMeaning
serverNametool-name namespace; unique per profile
commandMCP server executable (replace the placeholder)
argsCLI arguments for the server
toolCallTimeoutMsper-tool-call timeout; raise it if MATLAB cold start exceeds it

Uninstall / disable

  • Remove: dsh plugin --profile desktop remove dsh-mcp-matlab (or drop it from dsh.profile.bundles and pnpm install), restart.
  • Temporarily disable: set disabled: true on the mcp-matlab row in the profile's cordis.patch.yml.

Add another MCP server

Append another insert row to this repo's cordis.patch.yml (same shape as mcp-github used to be in $DSH_HOME/cordis.patch.yml); keep serverName unique.

Known issue

If the model-side provider (e.g. Alibaba DashScope) strictly validates tools with an empty parameter schema, calling MATLAB tools may fail with: InternalError.Algo.InvalidParameter: ... must conform to a valid openai-compatible JSON schema. This is a provider-vs-empty-inputSchema compatibility issue, unrelated to how this plugin is packaged.

License

MIT