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.

Codebase Memory Mcp — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-codebase-memory-mcp

Codebase Memory Mcp

DSH plugin that bridges the local codebase-memory-mcp knowledge-graph server through the built-in @deepseek-ai/dsh-mcp-client, with a runtime-configurable exe path (settings namespace).

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-codebase-memory-mcp@0.1.0
READMECompatibilityVersions

Compatibility and provenance

Codebase Memory Mcp is published as dsh-codebase-memory-mcp 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
npm
Registry updated
8/25/2026

Versions

0.1.0stable
8/25/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
7.8 kB
Files
5
Surface
any
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
0
Last push
8/25/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 memory-context.

Contextdsh-contextA DeepSeek Harness plugin for context insight and management, with context dashboard and context command, for understanding how the context is made of, and how it evolves.Mnemondsh-mnemonComposable three-tier memory control plane for DeepSeek Harness: persistent runtime context, searchable project documents, pluggable long-term memory, guarded strategies, WebUI, and headless tools.Memsearch Dsh@zilliz/memsearch-dshMemSearch plugin for DeepSeek Harness: shared markdown memory across agents, with capture, pre-step context injection, memory-recall skill, and a skill-candidate review panel.Memory@furongjun1999/dsh-memoryLingshu (Lingshu·líng shū) DeepSeek Harness plugin: a complete brain—long-term memory/knowledge flywheel/self-awareness/recursive reflection integrated with DSH, with conversations automatically distilled into the md_cg cognitive graph (md documents)

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