LedgerMem MCP Server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@LedgerMem MCP ServerRemember that my name is Alice and I work at Acme Corp."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@ledgermem/mcp-server
Model Context Protocol server for LedgerMem Memory — exposes long-term memory tools to any MCP client (Claude Desktop, Cursor, Windsurf, VS Code, Zed).
Tools
Tool | What it does |
| Hybrid 7-strategy retrieval over the workspace memory store. |
| Store an atomic fact with optional metadata. |
| Patch an existing memory's content or metadata. |
| Permanently remove a memory by ID. |
| Paginate through memories (cursor-based). |
All calls are scoped to a workspace and (optionally) an actor.
Install
Claude Desktop / Cursor / Windsurf / VS Code / Zed
npx -y @ledgermem/mcp-serverOr wire it into the client config directly. Example for Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"ledgermem": {
"command": "npx",
"args": ["-y", "@ledgermem/mcp-server"],
"env": {
"LEDGERMEM_API_KEY": "lk_live_...",
"LEDGERMEM_WORKSPACE_ID": "ws_..."
}
}
}
}Get an API key at https://app.proofly.dev/settings/api-keys.
Hosted (HTTP/SSE) at mcp.proofly.dev
npx -y install-mcp@latest https://mcp.proofly.dev/mcp --client claude(OAuth flow lands in v0.2 — until then the hosted endpoint accepts x-ledgermem-api-key + x-ledgermem-workspace-id headers from trusted clients.)
Develop
npm install
cp .env.example .env # fill in LEDGERMEM_API_KEY + LEDGERMEM_WORKSPACE_ID
npm run dev # stdio
npm run dev:http # HTTP/SSE on :8787
npm run build # bundle to dist/Architecture
stdio (
src/cli.ts): one process per MCP client connection, env-configured.HTTP/SSE (
src/http.ts): single long-running process for hosted use, header-or-OAuth auth.Both transports share
src/server.ts(tool registration + dispatch) andsrc/api-client.ts(typed REST wrapper).
The server deliberately does NOT depend on @ledgermem/memory (the JS SDK) so it can ship independently.
License
MIT
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ledgermem/getmnemo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server