๐Ÿ”Engram

Pricing

Free and open-source.

Engram is fully open-source. Install it, self-host it, use it forever โ€” no account required.

Hosted tiers with managed infrastructure are coming soon.

Free

$0

Forever. No credit card. No account.

Available Now
  • โœ“Full causal extraction + graph (local)
  • โœ“Why-queries โ€” backward DFS, zero LLM
  • โœ“MCP server mode
  • โœ“CLI: engram install / serve / why / ingest
  • โœ“Claude Code, Cursor, Codex hooks
  • โœ“SHA256 cache โ€” zero LLM on repeated text
  • โœ“Rule-based extractor โ€” zero LLM on structured events
  • โœ“Bring your own Anthropic API key
  • โœ“EU AI Act Article 13 audit trail
  • โœ“No usage limits โ€” self-hosted forever

# install

pip install engram-causal

# set your Anthropic key (only for free-text extraction)

export ANTHROPIC_API_KEY=sk-ant-...

# install hooks + start

engram install && engram serve

Hosted tiers โ€” coming soon

Coming Soon

Pro

$19/mo

Hosted API, LLM included, persistent cloud graph, web dashboard.

Coming Soon

Team

$49.5 seats

Shared org graph, multi-agent tracking, audit log export.

Coming Soon

Enterprise

Custom

On-premise, custom LLM backend, SSO, dedicated support.

Want hosted early access? Email us โ†’

LLM cost profile

Rule-based extraction and SHA256 caching eliminate most LLM calls.

Event typeLLM costReason
Structured JSON event$0.00Rule-based extractor
Repeated free-text log$0.00SHA256 cache hit
New free-text (first time)~$0.0003 / 1K tokensClaude Haiku โ†’ cached forever
Why-query (DFS traversal)$0.00Graph math, no LLM
Explanation synthesis$0.00Template engine

Typical 100-event session: ~$0.002 total. Subsequent runs: $0.00.

FAQ

Do I need an Anthropic API key?
Only for free-text log extraction. Structured JSON events and why-queries are zero LLM โ€” no key needed for those. Set ANTHROPIC_API_KEY in your env and Engram calls Claude Haiku directly. You pay Anthropic (~$0.002 per 100-event session).
Is there a usage limit on the free tier?
No. It runs entirely on your machine. The only limits are your own compute and your Anthropic API quota.
When will hosted tiers be available?
We're working on it. Email hello@engram.viberank.co.in to get notified when Pro launches.
What license is Engram?
MIT. Use it in commercial projects, modify it, redistribute it.