Relax Memory MCP
Click 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., "@Relax Memory MCPStore a memory: user's preferred language is Python."
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.
Relax! Memory MCP
Archived. Claude can now use multiple files for memories.
A persistent memory server for AI agents, built on the Model Context Protocol.
Why this server?
Most AI agents lose context between sessions. Built-in memory features (like Claude Code's MEMORY.md) are plain files the agent must read and write manually — they have no structure, no categories, and no way to list or search entries without reading the entire file.
Relax! Memory MCP fixes this by giving agents structured, persistent memory via tools:
Categorised storage — memories are grouped by category (e.g.
config,design,architecture), so an agent can store and retrieve related facts without scanning everything.Minimal token cost —
list_memoriesreturns a lightweight hierarchical index. The agent only fetches full values when it needs them, keeping context windows small.Upsert semantics — storing a memory with the same
category + nameoverwrites the previous value. No duplicates, no cleanup needed.Instant persistence — every write is flushed to a single JSON file on disk. Survives crashes, restarts, and agent re-connections.
Zero dependencies at runtime — just Node.js and the MCP SDK. No database, no cloud service, no API key.
Multi-instance friendly — use
--dirand--nameto run separate memory stores for different projects or agents from the same binary.
Related MCP server: Mem0 MCP Server
Tools exposed
Tool | Description |
| Store or update a memory (category, name, description, value) |
| Retrieve a specific memory by category and name |
| Delete a memory by category and name |
| List all memories as a hierarchical index grouped by category |
Installation
npm install
npm run buildThis compiles TypeScript into dist/ and makes dist/index.js the executable entry point.
Configuration
Add the server to your MCP client config. Ommit --dir for currently running project.
Claude Code (CLI)
claude mcp add --scope user memory -- node d:/installdir/dist/index.js --dir d:/my-projectClaude Desktop / Claude Code (manual)
Add to your claude_desktop_config.json or .claude.json:
{
"mcpServers": {
"memory": {
"command": "node",
"args": [
"d:/src/AI/MCP/Memory/dist/index.js",
"--name", "Project Memory",
"--dir", "d:/my-project"
]
}
}
}CLI flags
Flag | Default | Description |
|
| Server name reported to the MCP client (set if you have a general server that all projects shpuld be able to access) |
|
| Server description |
| Current working directory | Directory where |
Running
Start the server directly (stdio transport):
node dist/index.jsOr with flags:
node dist/index.js --dir ./my-project --name "My Project Memory"The server communicates over stdin/stdout using the MCP stdio transport. It is designed to be launched by an MCP client, not called directly from a browser or HTTP client.
Debugging
Run tests
npm testUses Vitest. Tests create temporary directories and verify the full lifecycle: add, get, update, delete, persistence, and hierarchical indexing.
Inspect the stored data
Memories are stored as plain JSON in memories.json inside the configured --dir:
cat memories.json[
{
"name": "tech-stack",
"category": "architecture",
"description": "Chosen technology stack",
"value": "TypeScript, PostgreSQL, OpenLayers"
}
]Debug with MCP Inspector
Use the MCP Inspector to interactively call tools:
npx @modelcontextprotocol/inspector node dist/index.js -- --dir .This opens a web UI where you can invoke add_memory, list_memories, etc. and see the raw JSON responses.
Attach a Node debugger
node --inspect dist/index.js --dir .Then open chrome://inspect in Chrome or attach from VS Code using a launch configuration:
{
"type": "node",
"request": "launch",
"name": "Debug Memory MCP",
"program": "${workspaceFolder}/dist/index.js",
"args": ["--dir", "."],
"outFiles": ["${workspaceFolder}/dist/**/*.js"]
}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.
Latest Blog Posts
- 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/jgauffin/memory-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server