Anthropic Auto Dream vs Official MCP Memory server
Anthropic Auto Dream vs Official MCP Memory server: side-by-side comparison of two claude code memory mechanisms systems — architecture, taxonomy, license, pricing, MCP/A2A support, and direct edges.
Anthropic Auto Dream · Official MCP Memory server
Cost & capability
| Anthropic Auto Dream | Official MCP Memory server | |
|---|---|---|
| Capability band | competent | entry |
| Capability composite | 70 | 35 |
| Cost tier | mid | free |
| $/Mtok input | — | 0 |
| $/Mtok output | — | 0 |
| Use cases | Code Generation Focused, Long Running Session | Code Generation Focused, Long Running Session, Offline Capable, Multi Agent Coordination |
Where they differ (14)
Rows where both sides have data and the values disagree — the shortlist of dimensions that actually distinguish these two systems.
| Anthropic Auto Dream | Official MCP Memory server | |
|---|---|---|
| Capability band | competent | entry |
| Capability composite | 70 | 35 |
| Cost tier | mid | free |
| Use cases | Code Generation Focused, Long Running Session | Code Generation Focused, Long Running Session, Offline Capable, Multi Agent Coordination |
| Type | REM-style sub-agent memory consolidation | KG-based persistent memory MCP |
| Created | 2026-05 (research-preview rollout in Claude Code; server-side feature flag) | 2024-11 |
| Pricing | bundled with Claude Code (no separate fee) | free / open source (MIT) |
| Backend storage | local filesystem (~/.claude/projects/<project>/memory/) | file (JSON) |
| Deployment | Local CLI (Claude Code) — Claude.ai web not in scope | local (Node.js MCP server; local JSON file) |
| API surface | /dream slash command + /memory toggle (Auto-dream: on) | MCP (stdio); knowledge-graph tools (create_entities/relations/observations, read/search/delete) |
| MCP | native (first-party — Claude Code built on MCP) | native (first-party) — reference implementation |
| OpenTelemetry | no — local CLI feature | no |
| Optimised for | background memory consolidation + bounded MEMORY.md size + surgical updates | Claude-Code-native + MCP-portable memory |
| Anti-fit | not for users on Claude.ai web (CLI-only); not for environments where consolidation logic must be auditable | not for non-Claude-Code clients (some are MCP-portable) |
At a glance
| Anthropic Auto Dream | Official MCP Memory server | |
|---|---|---|
| Section | Claude Code memory mechanisms | Claude Code memory mechanisms |
| Tier | T1 | T1 |
| Type | REM-style sub-agent memory consolidation | KG-based persistent memory MCP |
| Created | 2026-05 (research-preview rollout in Claude Code; server-side feature flag) | 2024-11 |
| Latest release | — | 2026.1.26 2026-01-27 |
| License | — | Custom |
| GitHub | — | 85.1k★ +4.8k/mo TypeScript |
| Pricing | bundled with Claude Code (no separate fee) | free / open source (MIT) |
| Funding | Anthropic total $12.4B+ raised; $40B valuation | — |
| Backend storage | local filesystem (~/.claude/projects/<project>/memory/) | file (JSON) |
| Deployment | Local CLI (Claude Code) — Claude.ai web not in scope | local (Node.js MCP server; local JSON file) |
| API surface | /dream slash command + /memory toggle (Auto-dream: on) | MCP (stdio); knowledge-graph tools (create_entities/relations/observations, read/search/delete) |
| MCP | native (first-party — Claude Code built on MCP) | native (first-party) — reference implementation |
| A2A | not supported | not supported |
| OpenTelemetry | no — local CLI feature | no |
| Optimised for | background memory consolidation + bounded MEMORY.md size + surgical updates | Claude-Code-native + MCP-portable memory |
| Anti-fit | not for users on Claude.ai web (CLI-only); not for environments where consolidation logic must be auditable | not for non-Claude-Code clients (some are MCP-portable) |
Taxonomy
| Axis | Anthropic Auto Dream | Official MCP Memory server |
|---|---|---|
| storage | file | graph |
| retrieval | extraction-pull | graph-traversal |
| persistence | long-term | cross-session |
| update | consolidation | overwrite |
| unit | fact | fact |
| governance | user-controllable | inspectable |
| conflict | llm-arbitrate | llm-arbitrate |
Pros & cons
Anthropic Auto Dream
Pros: Bounded MEMORY.md size (200 lines) prevents context bloat; surgical updates preserve user-edited content; user-toggleable; complements rather than replaces CLAUDE.md.
Cons: Closed-source; opt-out mechanism not formally documented; consolidation logic opaque; no audit log for what was pruned/merged; only Claude Code (not Claude.ai web).
Official MCP Memory server
Pros: Reference implementation in the MCP spec; smallest possible memory primitive — useful for testing and lightweight cases.
Cons: Minimal feature set — no extraction, no governance, no retention policy; production deployments quickly outgrow it.