🧠 Basic Memory MCP Server

✅ Running

📊 Server Stats

🔌 API Endpoints

🛠️ Available Tools

store_memory
Store a new memory with a unique key. Use this to remember important information, user preferences, or any data you need to recall later.
recall_memory
Retrieve a specific memory by its unique key.
list_all_memories
List all stored memories with their keys and preview of content.
search_memories
Search through all memories by keyword. Searches in content, tags, and keys.
delete_memory
Permanently delete a memory by its key.

📝 Test Connection

curl -X POST http://basicmemory.zeabur.app/mcp \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/list"
  }'

🔗 Connect via LibreChat

Add to your LibreChat MCP configuration:

{
  "basicMemory": {
    "url": "http://basicmemory.zeabur.app/mcp",
    "name": "Basic Memory",
    "description": "Simple persistent memory storage"
  }
}