agentmemo-mcp
AgentMemo MCP Server
Persistent memory and human-in-the-loop approval for AI agents via Model Context Protocol (MCP)
AgentMemo is a Model Context Protocol (MCP) server that gives AI agents persistent memory across sessions and human approval capabilities before sensitive actions.
Features
🧠 Persistent Memory — Store and retrieve memories across conversations and sessions
✅ Human Approval Gateway — Agents can request approval from humans before critical actions
🔌 MCP-Native — Works with any MCP client (Claude Desktop, Cursor, Windsurf, OpenClaw)
🌐 Cloud API — Powered by AgentMemo API (https://agentmemo.net)
📦 Zero Setup — Just add your API key, no server to deploy
Related MCP server: mind-mem
Installation
npm install agentmemo-mcpOr install globally for MCP clients:
npm install -g agentmemo-mcpQuick Start
1. Get Your API Key
Sign up for a free API key at agentmemo.net — no credit card required.
2. Configure Your MCP Client
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"agentmemo": {
"command": "npx",
"args": ["agentmemo-mcp"],
"env": {
"AGENTMEMO_API_KEY": "your_api_key_here"
}
}
}
}Cursor / Windsurf
Add to your settings:
{
"mcpServers": {
"agentmemo": {
"command": "npx",
"args": ["agentmemo-mcp"],
"env": {
"AGENTMEMO_API_KEY": "your_api_key_here"
}
}
}
}OpenClaw
Already integrated! Set AGENTMEMO_API_KEY in your .env or OpenClaw config.
3. Use the Tools
Your agent now has access to these tools:
remember— Store a memory for later recallrecall— Search stored memories by queryforget— Delete a memory by IDlist_memories— List recent memories in a namespacerequest_approval— Ask a human to approve an actioncheck_approval— Check the status of an approval request
API Reference
Tool: remember
Store information for later recall.
{
"content": "User prefers dark mode and concise responses",
"namespace": "user-preferences"
}Returns: Memory ID, creation timestamp
Tool: recall
Search across stored memories.
{
"query": "dark mode preferences",
"namespace": "user-preferences",
"limit": 5
}Returns: List of matching memories with scores
Tool: request_approval
Request human approval before a sensitive action.
{
"action": "Delete all emails older than 1 year",
"context": "Freeing up 50GB of storage"
}Returns: Approval request ID and status
Tool: check_approval
Poll the status of a pending approval.
{
"id": "approval_12345"
}Returns: Status (pending/approved/rejected) and decision if available
Memory Namespaces
Organize memories by namespace to keep them separate:
user-preferences— User settings and preferencesproject-alpha— Project-specific contextmeeting-notes— Meeting transcripts and summariescustom/any-name— Any custom namespace
Development
Requirements
Node.js 18+
npm 9+
Setup
git clone https://github.com/andrewpetecoleman-cloud/agentmemo-mcp.git
cd agentmemo-mcp
npm installTesting
npm testBuilding
npm run buildHow It Works
Agent asks for memory — "Remember that the user prefers dark mode"
MCP Server handles it — Calls AgentMemo API with your API key
Memory is stored — Persisted in AgentMemo cloud (encrypted in transit)
Agent recalls later — "What are the user's preferences?"
Memory is retrieved — Searched from AgentMemo and returned to agent
For approvals, the agent pauses and waits for human decision before proceeding.
Architecture
Agent (Claude/GPT/etc)
↓
MCP Server (agentmemo-mcp)
↓
AgentMemo API (agentmemo.net)
↓
Memory Storage + Approval GatewayPricing
Free Tier:
10,000 memories
100 searches/day
No credit card required
Paid Plans:
Starter: $19/month
Pro: $99/month
Team: $499/month
See agentmemo.net for full pricing.
Security
✅ HTTPS encrypted in transit
✅ API key authentication
✅ Namespace isolation
✅ No data sharing with third parties
✅ User data never used for model training
Support
📖 Docs: agentmemo.net/docs
💬 Email: hello@agentmemo.net
🐛 Issues: GitHub Issues
License
MIT
Contributing
Contributions welcome! Please:
Fork this repo
Create a feature branch
Submit a pull request
Related Projects
AgentMemo API — Full product repo
TypeScript SDK — Node.js/browser SDK
Python SDK — Python integration
Built by Andy Coleman at AgentMemo
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
- AlicenseAqualityAmaintenanceCognitive memory for AI agents. Works with Claude Code, Cursor, Windsurf, and any MCP-compatible client.2024MIT
- Alicense-qualityAmaintenancePersistent, auditable memory for AI agents. Hybrid BM25 + vector recall with 18 MCP tools, adaptive block metadata (A-MEM), intent-aware routing, contradiction detection, and governance workflows. Zero external dependencies. Drop-in memory for Claude Code and any MCP-compatible agent.14Apache 2.0
- AlicenseAqualityDmaintenancePersistent memory API for AI agents — store, recall, and inject semantically-searchable context across sessions. EU-hosted, GDPR-compliant. Supports Claude, Cursor, Cline, and any MCP-compatible client.42MIT

dakera-mcpofficial
FlicenseAqualityBmaintenanceSelf-hosted MCP-native agent memory server. Gives AI agents persistent, decay-weighted memory via 83 MCP tools — no cloud, full control. RocksDB+HNSW backend. Works with Claude Code, Cursor, and any MCP-compatible agent.148
Related MCP Connectors
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
One memory, every AI: Claude, ChatGPT, Perplexity, Gemini, Cursor, OpenClaw, Hermes, any MCP client.
Person-owned, portable AI memory as a remote MCP server, readable and writable by 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/andrewpetecoleman-cloud/agentmemo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server