MemoClaw MCP Server
MCP (Model Context Protocol) server for MemoClaw semantic memory API.
Installation
npm install -g memoclaw-mcp
Configuration
Set your private key:
export MEMOCLAW_PRIVATE_KEY=0x...
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"memoclaw": {
"command": "memoclaw-mcp",
"env": {
"MEMOCLAW_PRIVATE_KEY": "0x..."
}
}
}
}
Cursor
Add to MCP settings in Cursor preferences.
Tools
| Tool | Description |
|------|-------------|
| memoclaw_store | Store a memory with semantic embeddings |
| memoclaw_recall | Recall memories via semantic search |
| memoclaw_list | List stored memories |
| memoclaw_delete | Delete a memory by ID |
| memoclaw_status | Check free tier remaining calls |
| memoclaw_ingest | Zero-effort ingestion: dump conversations/text, auto-extract facts with dedup & relations |
| memoclaw_extract | Extract structured facts from conversation via LLM |
| memoclaw_consolidate | Merge similar memories by clustering |
| memoclaw_suggested | Get proactive memory suggestions |
| memoclaw_update | Update a memory by ID |
| | Create a relationship between memories |
| | List all relationships for a memory |