MemClawz is Redis for AI agents — a shared memory system where multiple AI agents store, search, and learn from collective memories. Open source, lightning fast, built for the AI-first future.
A shared memory system that makes AI agent fleets smarter, faster, and more collaborative
Traditional AI agents operate in isolation, losing context between conversations and duplicating work across the fleet. MemClawz changes this by providing a shared memory layer where agents can store, search, and learn from collective experiences.
Built for the challenges of real AI agent deployments
BM25 keyword + vector similarity (70/30 blend) delivers the most relevant memories every time
8-state management: active→verified→archived→deprecated→superseded→merged→disputed→deleted
Automatic entity, category, and temporal extraction on every memory write
Semantic similarity + recency + importance + access frequency for perfect relevance
3-tier compaction (session, daily, weekly) with deduplication keeps memory lean
HTTP push/pull protocol for sharing memories across distributed agent fleets
LLM-driven pattern detection and insight generation during downtime
From decisions to events to insights — structured memory classification
Simple API, powerful capabilities
curl -X POST http://localhost:3500/api/v1/add \
-H "Content-Type: application/json" \
-d '{
"content": "Deployed v2.1 to production",
"agent_id": "infraclaw",
"memory_type": "event"
}'
curl "http://localhost:3500/api/v1/search?q=deployment+issues&limit=5"
# Returns relevant memories with scores
{
"memories": [
{
"content": "Fixed nginx config issue",
"score": 0.94,
"agent_id": "infraclaw",
"timestamp": "2024-03-14T15:30:00Z"
}
]
}
curl "http://localhost:3500/api/v1/hybrid-search?q=port+3500+config&alpha=0.7"
# Combines keyword + vector search
# alpha=0.7 means 70% vector, 30% keyword
curl "http://localhost:3500/api/v1/route?task=fix+nginx+config"
# Returns the best agent based on memory history
{
"recommended_agent": "infraclaw",
"confidence": 0.89,
"reasoning": "High expertise in nginx configurations"
}
Built on proven technologies, optimized for AI workloads
Deploy MemClawz in under 5 minutes
MemClawz is completely open source and MIT licensed. We believe the future of AI is collaborative, and memory should be a shared resource, not a competitive moat.
The Redis for AI Agents - shared memory system for AI agent fleets
Connect with developers building the future of AI agent systems