An MCP server that exposes a shared local SQLite-backed key/value memory store so multiple MCP clients can read and write the same persistent context across sessions. It includes read/search tools, tagged and TTL-based memory, and blocks storing credential-like secrets.
From the registry: Local-first persistent memory MCP: shared SQLite key/value store, searchable, TTL-aware, secret-safe
$ npx -y delx-memory doctorPlease install the `delx-memory` MCP server into my current AI client (that's you).
Required prerequisites (do these first if not already done):
- **Install Node.js 20 or newer** — Node.js version 20 or higher is required to run the server via npx or as a global npm package.
Optional prerequisites:
- Run the health check — Run the server's doctor command once to verify Node version, database writability, and file permissions before configuring your MCP client. Run: `npx -y delx-memory doctor`
Canonical MCP server config (stdio transport):
- command: `npx`
- args: ["-y","delx-memory"]
- optional environment variables:
- `DELX_MEMORY_PATH`: Override the SQLite database file path used for persistent memory storage. (example: `<your-db-file-path>`)
- `DELX_MEMORY_TRANSPORT`: Transport mode. Defaults to stdio; set only if you need to override transport selection. (example: `<stdio-or-http>`)
- `DELX_MEMORY_HOST`: HTTP host to bind when running in HTTP mode. (example: `<your-http-host>`)
- `DELX_MEMORY_PORT`: HTTP port to bind when running in HTTP mode. (example: `<your-http-port>`)
- `DELX_MEMORY_ALLOWED_ORIGIN`: Allowed CORS origin when running in HTTP mode. (example: `<your-allowed-origin>`)
Note: The README presents stdio as the default MCP client configuration using `npx -y delx-memory`. The server also supports HTTP mode via `delx-memory --http` or environment overrides, but no canonical MCP client HTTP config snippet is provided. Default storage is at `~/.delx-memory/db.sqlite`.
Add this MCP server to my current client's config in the correct format for you. If you need secrets or credentials I haven't provided, ASK me — do not invent values or leave raw placeholders. After adding it, tell me how to verify the server is connected.DELX_MEMORY_PATHOverrides the location of the SQLite database file.MCP server for interacting with the Supabase platform