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.

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

dsh-noc-memory

Noc Memory

DeepSeek Harness plugin: Nocturne Memory client — automated long-term memory (boot/read/search/create/update/delete) backed by your own Nocturne MCP server.

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-noc-memory@0.3.8
READMECompatibilityVersions

Compatibility and provenance

Noc Memory is published as dsh-noc-memory and currently resolves to version 0.3.8. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
npm
Registry updated
9/20/2026

Versions

0.3.8stable
9/11/2026
0.3.7stable
9/11/2026
0.3.6stable
9/10/2026
Show 10 more versionsCollapse versions
0.3.5stable
9/9/2026
0.3.4stable
9/8/2026
0.3.3stable
9/7/2026
0.3.2stable
9/3/2026
0.3.1stable
8/25/2026
0.3.0stable
8/22/2026
0.2.3stable
8/21/2026
0.2.2stable
8/20/2026
0.2.1stable
8/20/2026
0.2.0stable
8/20/2026

Related plugins

Loading related plugins…

Latest
0.3.8
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
28.3 kB
Files
7
Surface
any
License
MIT
Source
npm
Weekly downloads
145
Security scan
✓ v0.3.8 scan passed
View source ↗Project homepage ↗
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.

Memory Plugin@openviking/dsh-memory-pluginOpenViking memory and context bundle for DeepSeek HarnessContextdsh-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.Weknora@wxg-prc-cpg/dsh-weknoraWeKnora knowledge retrieval tools for DeepSeek Harness (dsh): semantic search, document reading and RAG/agent answers over your own knowledge bases.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.

README

dsh-noc-memory — long-term memory for DeepSeek Harness

dsh-noc-memory

Connects DeepSeek Harness to Noc Memory: session-start boot + daily briefing, plus memory read / search / create / update / delete, backed by your own Noc Memory MCP server on Cloudflare.

Port of pi-noc-memory — same protocol, same tool names.

English · 中文

Tools

toolwhat it does
noc_bootload at session start: system://boot, system://recent/5, system://triggers, then best-effort system://briefing; afterward read system://focus (recent is a briefing subset — no need to re-read it after boot)
noc_readread a memory by URI (system://…, noc://agent, …)
noc_searchsearch memories (semantic + keyword / trigger recall via search_memory)
noc_createcreate a memory node ([Baseline]/[Deviation]/[Result]/[Reusable judgment])
noc_updatefull replace, patch (old_string/new_string), or append; optional relation
noc_deletedelete a memory by URI (delete_memory)

Quick start

dsh plugin --profile web add dsh-noc-memory

Requires your own Noc Memory server — deploy it to Cloudflare in minutes: cf-noc-mem.

- id: noc-memory
  name: dsh-noc-memory
  config:
    mcp_url: https://mem.example.com/mcp
    mcp_auth: ""  # prefer mcp_headers for Access service token

For a server behind Cloudflare Access (e.g. noc-mem.slahser.com), use the service token headers instead of mcp_auth:

- id: noc-memory
  name: dsh-noc-memory
  config:
    mcp_url: https://noc-mem.slahser.com/mcp
    mcp_headers:
      CF-Access-Client-Id: <your client id>
      CF-Access-Client-Secret: <your client secret>
keyrequiredmeaning
mcp_urlyesyour Noc Memory MCP endpoint (Streamable HTTP)
mcp_authnolegacy; prefer mcp_headers for Cloudflare Access service token
mcp_headersnoextra headers merged into every MCP request (e.g. Cloudflare Access service token)

Upgrading from dsh-nocturne-memory (≤0.1.x): renamed to dsh-noc-memory, tools renamed nocturne_* → noc_*. Remove the old plugin and re-add the new package; update any prompt text referencing nocturne_* tools.

Why noc_* (not nocturne_*)?

Some agents probe read_mcp_resource before reaching for a memory tool, wasting a round trip (upstream issue #32). Explicit noc_boot / noc_read naming in the tool list and boot-protocol prompt steers models straight to the right tool — no resource shim required.

License

MIT

Related

  • cf-noc-mem — the Cloudflare MCP memory server this plugin talks to
  • pi-noc-memory — same memory tools for Pi
  • nocturne_memory — upstream project