Mnemoverse Platform
Build agents that remember every customer. Enterprise-grade memory infrastructure.
Personal vs Platform
| Personal | Platform | |
|---|---|---|
| For | You and your AI tools | Your product and your customers |
| Memory belongs to | You | Your end users |
| Isolation | One pool | Per-tenant isolation |
| Dashboard | Your memories, your graph | Tenant metrics, usage per customer |
| Typical use | Claude Code remembers your preferences | Support bot remembers each customer |
What Platform Gives You
Per-Tenant Memory Isolation
Each of your customers gets their own memory space. Alice's data never touches Bob's.
python
# Your support bot — different memory per customer
client.write(
"Customer prefers email notifications",
domain="tenant:alice",
)
# Reading — only Alice's memories
client.read("notification preferences", domain="tenant:alice")Multi-Agent Coordination
Multiple agents working on the same customer share memory:
python
# Sales agent learns something
client.write(
"Decision maker is CTO, budget approved Q3",
concepts=["sales", "budget"],
domain="tenant:acme-corp",
)
# Onboarding agent knows it too
client.read("what do we know about Acme?", domain="tenant:acme-corp")
# → "Decision maker is CTO, budget approved Q3"Scale
- 10,000+ tenants on a single API key
- Domain-based isolation — no infrastructure per tenant
- Same API, same SDK, same MCP server
What Your Dashboard Shows
Platform dashboard focuses on operational metrics:
- Tenants count and activity
- Memory usage per tenant
- API calls and latency
- Cost attribution per tenant
You do NOT see your customers' memory contents — only aggregate metrics.
Architecture
Your API Key
├── domain: "tenant:alice" ← Alice's memories (isolated)
├── domain: "tenant:bob" ← Bob's memories (isolated)
├── domain: "tenant:acme" ← Acme Corp memories (isolated)
└── domain: "shared:knowledge" ← Your product's knowledge baseOne API key. Domains handle isolation. No infrastructure management per tenant.
Get Started
- Get an API key (free tier works for development)
- Use
domainparameter to isolate tenants - See Multi-Tenant Setup for detailed guide
Pricing
Platform features are available on Pro and Team plans. See Usage & Plans for details.
Free tier works for development and testing with up to 10 tenants.