AiAgentKarl/agent-memory-mcp-server-js
JavaScript MCP Server for persistent agent memory — store, retrieve, search knowledge
Platform-specific configuration:
{
"mcpServers": {
"agent-memory-mcp-server-js": {
"command": "npx",
"args": [
"-y",
"agent-memory-mcp-server-js"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
Persistent memory for AI agents. Store, retrieve, and search knowledge across sessions using the Model Context Protocol.
~/.agent-memory/project_x, user_prefs)| Tool | Description | |------|-------------| | store | Store a key-value pair with optional metadata | | retrieve | Retrieve a stored value by key | | search | Search across memories using substring matching | | list_keys | List all keys in a namespace | | delete | Delete a stored entry | | list_namespaces | List all available namespaces |
npm install -g @aiagentkarl/agent-memory-mcp-serverAdd to your claude_desktop_config.json:
{
"mcpServers": {
"agent-memory": {
"command": "npx",
"args": ["-y", "@aiagentkarl/agent-memory-mcp-server"]
}
}
}claude mcp add agent-memory -- npx -y @aiagentkarl/agent-memory-mcp-serverData is stored as JSON files in ~/.agent-memory/. Each namespace gets its own file:
~/.agent-memory/
default.json
project_x.json
user_prefs.jsonSet MEMORY_STORAGE_DIR environment variable to change the storage location.
---
| Category | Servers | |----------|---------| | 🔗 Blockchain | Solana | | 🌍 Data | Weather · Germany · [Agriculture](https://github.com/AiAgentKarl/agriculture-mcp-se
Loading reviews...