DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Codebase Memory Mcp — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins

dsh-codebase-memory-mcp

Codebase Memory Mcp

通过内置的 @deepseek-ai/dsh-mcp-client 连接本地 codebase-memory-mcp 知识图谱服务器的 DSH 插件,支持运行时配置 exe 路径(settings 命名空间)。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add dsh-codebase-memory-mcp@0.1.0
README兼容性版本

兼容性与来源证明

Codebase Memory Mcp 以 dsh-codebase-memory-mcp 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
npm
Registry 更新时间
2026/8/25

版本

0.1.0stable
2026/8/25

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
7.8 kB
文件数
5
Surface
any
许可证
MIT
发布源
npm
GitHub
★ 0
周下载
0
最近提交
2026/8/25
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 memory-context 分类下经过校验的插件。

Contextdsh-context用于上下文洞察和管理的 DeepSeek Harness 插件,提供上下文仪表板和上下文命令,帮助了解上下文的构成及其演变过程。Mnemondsh-mnemon面向 DeepSeek Harness 的可组合三层记忆控制平面:持久化运行时上下文、可搜索的项目文档、可插拔的长期记忆、受保护的策略、WebUI 和无头工具。Memsearch Dsh@zilliz/memsearch-dsh适用于 DeepSeek Harness 的 MemSearch 插件:在多个代理之间共享 Markdown 记忆,支持捕获、步骤前上下文注入、记忆召回技能和技能候选审核面板。Memory@furongjun1999/dsh-memory灵枢(Lingshu·líng shū)DeepSeek Harness 插件:完整大脑——长期记忆/知识飞轮/自我认知/递归反思接入 DSH,对话自动沉淀进 md_cg 认知图(md 文档)

README

dsh-codebase-memory-mcp

A DeepSeek Harness plugin that bridges the local codebase-memory-mcp knowledge-graph MCP server into DSH — reusing the built-in @deepseek-ai/dsh-mcp-client bridge, so you don't implement any MCP transport yourself.

The model sees tools named mcp__codebase-memory__* (index_repository, search_graph, trace_path, query_graph, detect_changes, … — 14 tools in total).

Install (from the marketplace / npm)

dsh plugin --profile web add dsh-codebase-memory-mcp

Then reload the DSH web host (restart the app, or use the in-app reload).

Install (local development)

dsh plugin --profile web add link:D:\path\to\dsh-codebase-memory-mcp

Configure the server binary

The plugin reads its configuration from the codebase-memory-mcp settings namespace. The default exePath is codebase-memory-mcp, i.e. it assumes the server binary is on your PATH. If your binary lives elsewhere (e.g. a downloaded codebase-memory-mcp.exe), set the absolute path in Settings → Plugins → Plugin configuration → codebase-memory-mcp (or your profile's settings document). Saving hot-reloads the bridge — no restart needed.

SettingDefaultMeaning
exePathcodebase-memory-mcpCommand/executable for the MCP server.
cwd(exe's directory)Working directory for the spawned server.
extraArgs(empty)Extra CLI args, space-separated, appended to the command.

Verify

  1. After reload, ask the model: "What mcp__codebase-memory__* tools do you have?"
  2. You should see mcp__codebase-memory__index_repository, mcp__codebase-memory__search_graph, etc.
  3. Check the plugin inventory / logs to confirm mcp-client(codebase-memory) is active and 14 tools were discovered.

How it works

DSH host
 └─ composition loads this plugin (cordis.patch.yml insert)
     └─ wrapper plugin apply(ctx):
         1) ctx.settings.register('codebase-memory-mcp', schema)
         2) read scope.get() → build mcp config → ctx.plugin(mcpApply, cfg)  (dynamic)
         3) scope.watch(() => { handle.dispose(); re-launch })   ← settings change = hot reload

The bridge itself is the built-in @deepseek-ai/dsh-mcp-client; this package only contributes the composition entry and a runtime-configurable settings namespace.

Publish

  1. npm publish (registry verifies repository maps back to the same repo, preventing name squatting).
  2. Open a PR adding one entry to awesome-dsh-plugin — the market picks it up automatically, usually within a day.

Known limitations

  • No tailored settings card: the value lives in the codebase-memory-mcp settings namespace and is edited via DSH's settings document / generic editor. A point-and-click card would require replicating DSH's client-bundle build.
  • If the host cannot resolve @deepseek-ai/dsh-mcp-client etc. from this package, add those packages as dependencies or symlink them into the profile.

License

MIT