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.
- โ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
Pro
$19/mo
Hosted API, LLM included, persistent cloud graph, web dashboard.
Team
$49.5 seats
Shared org graph, multi-agent tracking, audit log export.
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 type | LLM cost | Reason |
|---|---|---|
| Structured JSON event | $0.00 | Rule-based extractor |
| Repeated free-text log | $0.00 | SHA256 cache hit |
| New free-text (first time) | ~$0.0003 / 1K tokens | Claude Haiku โ cached forever |
| Why-query (DFS traversal) | $0.00 | Graph math, no LLM |
| Explanation synthesis | $0.00 | Template 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.