dsh-mmpl
Verified@cup319/dsh-mmpl · v3.0.0 · MIT
MMPL (Memory Palace) memory plugin for DeepSeek Harness — connects the Rust DuckDB vector-memory MCP server via Streamable HTTP.
Install
dsh plugin add @cup319/dsh-mmpl Confirm the layer applied with dsh --profile default --dump-config — see the install guide.
Source
Published to npm without a public repository. Inspect the package contents before installing.
Tags
Creators
Readme
@cup319/dsh-mmpl
MMPL (Memory Palace) memory plugin for DeepSeek Harness — connects the Rust DuckDB vector-memory MCP server via Streamable HTTP.
What it does
Mounts the shared @deepseek-ai/dsh-mcp-client against a running MMPL server, exposing its 9 memory tools as mcp__mmpl__*:
memory_write/memory_search/memory_listmemory_manage/memory_stats/memory_evolvememory_compress/memory_palace/memory_symbol
MMPL's Ebbinghaus forgetting curve, "memory palace" (archived-memory palace with confirm-before-purge), BM25 + ONNX semantic vector retrieval, and RRF fusion all live server-side — this bundle only wires the connection.
Prerequisites
A running MMPL server at http://127.0.0.1:7680/mcp. This bundle does not download, build, or supervise the server.
Install the server separately:
# npm (Rust single-binary edition)
npm install -g @cup319/mmpl-rust
mmpl-rust # → http://127.0.0.1:7680/mcp
Install into a DSH profile
dsh plugin --profile <name> add @cup319/dsh-mmpl
dsh --profile <name>
Configuration
| Env | Default | Purpose |
|---|---|---|
MMPL_URL |
http://127.0.0.1:7680/mcp |
Override the MCP endpoint (remote host / proxy) |
To add auth headers, patch the memory-mmpl row's config.headers in your profile's cordis.patch.yml (a user layer overrides the bundle row by id).
Verify
- Session A: "Remember that my validation drink is lapsang-."
- Session B: "What is my validation drink? Check memory."
The model should call mcp__mmpl__memory_search and return the recalled value.
Note
This is an independent community integration, not an official DeepSeek or MMPL endorsement. See examples/mcp-memory in the deepseek-harness repo for the reference integration pattern.