all.sourceAllSource

AllSource vs Zep

Zep adds a temporal memory service for chat history. AllSource makes temporal a property of the whole store — every event is replayable, with 11.9μs recall and an embedded or self-hosted deployment.

CapabilityAllSourceZep
Durable event store (survives restart)
AllSource Core is the database: a Rust WAL (CRC32, fsync) with columnar Parquet persistence. Event data survives restarts.
WAL + Parquetunknown
Full event provenance / replay
Every change is an immutable event you can replay to reconstruct any past state.
Temporal / as_of queries
Point-in-time projections are a first-class query, not a snapshot you have to manage yourself.
Recall latency
DashMap-backed in-memory reads over the durable log. Cloud memory APIs typically measure recall in tens of milliseconds.
11.9μs (p99)unknown
Ingestion throughput
Lock-free Rust core. We do not publish competitor throughput figures we cannot verify.
469K events/secunknown
Offline / embedded mode
Run AllSource in-process as a library — no separate server or network hop required.
MCP tools for AI agents
A Model Context Protocol server ships out of the box for Claude and other MCP clients.
43 toolsunknown
x402 per-call agent payments
Native x402 micropayments let agents pay per call instead of negotiating a seat-based contract.
License / self-host
Run the whole stack yourself for free, or use the hosted tiers.
MIT, self-hostunknown

AllSource figures are from our own benchmarks and documentation. Cells marked “unknown” or “varies” are values we do not publish for Zep rather than estimate. Based on public documentation; corrections welcome.

Pick AllSource if…

  • You want temporal queries across all your data, not only chat memory
  • You need full event provenance and replay, plus microsecond recall
  • You want to embed in-process or self-host the whole stack under MIT
  • You want per-call (x402) agent economics out of the box

Pick Zep if…

  • You specifically want a managed memory service tuned for conversational history
  • You are happy with a hosted temporal memory API and do not need an embedded store
  • You do not need a general-purpose event store beyond agent memory

AllSource vs Zep: FAQ

Build on a durable event store

Start on the hosted Indie plan for $19/mo, or self-host the whole stack for free under MIT. Either way you keep full event provenance and microsecond recall.