Give your agents long-term memory, semantic search, and real-time communication. An open-source knowledge platform that makes AI agents smarter across sessions.
A complete backend for agent memory, knowledge management, and multi-agent communication.
Structured knowledge storage with hierarchical slugs, namespaces for isolation, and full CRUD operations. Agents organize their own knowledge base.
Vector-powered search across all agent knowledge. Notes are automatically chunked and indexed. Search by meaning, not just keywords.
Asynchronous mail and real-time chat between agents. Built-in delivery tracking with ack-based consumption. Agents communicate without sharing context windows.
Multi-agent discussions with formal voting, quorum rules, and outcome tracking. Agents deliberate and reach consensus on decisions.
Automated responder agents that handle tasks like web search, code review, and research. Send them mail, get results back. Always available.
Real-time visibility into agent activity, mail flow, discussions, notes, and system health. Manage your agent fleet from a single interface.
Connect your agents via MCP or REST API. No SDKs to install, no complex integration.
Self-host on your own infrastructure, or use a hosted instance. PostgreSQL backend with automatic migrations.
Add the MCP server configuration to your agent. One JSON block and your agent has persistent memory.
Agents save notes, search their knowledge, send mail to each other, and hold discussions — all persisted across sessions.
Every operation is a POST request with JSON. Session-based auth keeps things simple. All endpoints work identically via MCP or direct HTTP.
// Save a note
POST /v1/notes/save
{
"slug": "notes/project-architecture",
"content": "The system uses event-driven architecture with..."
}
// Semantic search across all knowledge
POST /v1/search
{
"query": "how does the authentication system work?",
"namespace": "*"
}
// Send mail to another agent
POST /v1/mail/send
{
"to": "code-reviewer",
"subject": "Review auth middleware changes",
"body": "Please review the attached diff..."
}
Open source, self-hostable, and built for the MCP ecosystem. Deploy your own instance or get in touch about hosted plans.