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.
getmnemo-mcp
Model Context Protocol server for Mnemo 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 a tenant container, both supplied by the operator at server startup (env). The container is the tenant boundary — it is not an argument the model can set; the tools only take content/query.
Related MCP server: mcp-memory
Install
Claude Desktop / Cursor / Windsurf / VS Code / Zed
npx -y getmnemo-mcpOr wire it into the client config directly. Example for Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"getmnemo": {
"command": "npx",
"args": ["-y", "getmnemo-mcp"],
"env": {
"GETMNEMO_API_KEY": "prfly_live_...",
"GETMNEMO_WORKSPACE_ID": "ws_...",
"GETMNEMO_CONTAINER_TAG": "user:jane"
}
}
}
}Get an API key at https://app.mnemohq.com/settings/api-keys.
Develop
npm install
cp .env.example .env # fill in GETMNEMO_API_KEY + GETMNEMO_WORKSPACE_ID + GETMNEMO_CONTAINER_TAG
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 getmnemo (the JS SDK) so it can ship independently.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceProvides persistent memory for AI assistants via MCP, enabling them to store and recall facts, preferences, and tasks across conversations using either local file storage or a cloud backend with semantic search.Last updated14MIT
- AlicenseAqualityDmaintenanceProvides persistent memory with semantic search for MCP-based AI agents, enabling them to store and recall information across sessions using vector embeddings.Last updated41MIT
- Alicense-qualityDmaintenanceEnables persistent memory for AI agents, combining episodic and semantic memory with LLM reasoning, accessible via MCP.Last updated2MIT
- Alicense-qualityBmaintenanceEnables AI assistants to have a living memory with atomic knowledge storage, multi-factor recall, organic decay, automatic learning, and graph traversal via MCP.Last updated1MIT
Related MCP Connectors
Your memory, everywhere AI goes. Build knowledge once, access it via MCP anywhere.
Cross-vendor AI memory over MCP. One semantic store, readable and writeable from every MCP client.
Cross-AI personal memory. Save once in ChatGPT, recall in Claude, Mistral, Grok, or any MCP client.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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