Skip to content

Mnemoverse Platform

Build agents that remember every customer. Enterprise-grade memory infrastructure.

Personal vs Platform

PersonalPlatform
ForYou and your AI toolsYour product and your customers
Memory belongs toYouYour end users
IsolationOne poolPer-tenant isolation
DashboardYour memories, your graphTenant metrics, usage per customer
Typical useClaude Code remembers your preferencesSupport 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 base

One API key. Domains handle isolation. No infrastructure management per tenant.

Get Started

  1. Get an API key (free tier works for development)
  2. Use domain parameter to isolate tenants
  3. 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.