Chris4K/agent-memory
1
🧠 AGENT MEMORY — Multi-tier Memory MCP
Memory tiers: episodic · semantic · procedural · working (TTL)
MCP — Claude Desktop
{
"mcpServers": {
"agent-memory": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://chris4k-agent-memory.hf.space/mcp/sse"]
}
}
}MCP Tools
REST API
GET /api/memories?tier=semantic&tag=jarvis
GET /api/memories/search?q=GDPR&tier=all
GET /api/memories/{id}
POST /api/memories {"content":"...","tier":"episodic","tags":[],"importance":7}
PATCH /api/memories/{id}
DELETE /api/memories/{id}
GET /api/statsAgent Usage
import requests
BASE = "https://chris4k-agent-memory.hf.space"
# Store a memory
requests.post(f"{BASE}/api/memories", json={
"content": "User prefers async Python with FastAPI for all backend services.",
"tier": "semantic", "tags": ["preference","python"], "agent": "jarvis", "importance": 8
})
# Search
r = requests.get(f"{BASE}/api/memories/search?q=FastAPI&limit=5")
print(r.json())Chris4K · ki-fusion-labs.de
