The Infrastructure Layer for LangGraph Agents
- ~200
- LOC adapter
- 50
- MCP tools
- 5
- SDKs, one layer
- 1 cmd
- docker compose up
agentFast is the production layer for LangGraph. LangGraph gives you the graph — nodes, edges, state, and genuinely excellent control flow. agentFast gives you everything that has to sit around it before a LangGraph agent can go in front of a paying customer, so you keep writing real LangGraph and stop rebuilding the plumbing.
Native interrupt + checkpointer
A native interrupt() for HITL and a real checkpointer wired to a durable Postgres store — a run survives a process crash.
~200-LOC adapter, not a wrapper
It uses LangGraph the way LangGraph wants to be used. Your graph definition stays yours — never hidden behind a grand abstraction.
Compaction, built in
Context compaction is wired straight into the adapter, so long conversations don't blow the window.
50 MCP tools
A registry of guardrailed, traced, rate-limited tools — add any MCP server by config, zero orchestration code.
Full observability
Every run is a step tree with per-step tokens, cost, latency and prompt-cache accounting — plus OTEL and LangSmith export.
Guardrails + evals
PII redaction before the model sees it, rate limits, and evals that fail CI on a regression.
- 1Install with the LangGraph extra
One pip install pulls the adapter and dev tools.
- 2Scaffold an agent
Generates config, a kb/ folder, seeded evals, and a compose file.
- 3Bring up the stack
Postgres, Redis, the agent API, dashboard and playground — one command.
- 4Gate on quality
agentfast eval exits non-zero if a metric drops below its threshold.
pip install -e ".[langgraph,dev]"
agentfast new support --sdk langgraph
cd support-agent && docker compose up
agentfast eval| LangGraph | agentFast on LangGraph | |
|---|---|---|
| Graphs, nodes, state machines | ✓ its core strength | Uses LangGraph directly |
| Checkpointer / interrupt | Primitives | Wired to a durable Postgres store |
| Memory (vector + episodic) | — bring your own | ✓ Included |
| 50 MCP-native tools | — bring your own | ✓ Included |
| Observability + cost tracing | — bring your own | ✓ Included |
| Guardrails (PII, safety, limits) | — bring your own | ✓ Included |
| Durable human-in-the-loop + UI | Primitives only | Survives a crash, exactly-once |
| Evals in CI | — bring your own | ✓ Included |
| Working reference agent | Templates | SupportAgent, point it at your KB |
SIGKILL across two OS processes. See how durable execution and durable human-in-the-loop work.Already on LangGraph? You lose nothing — agentFast supports five SDKs behind one layer, so the orchestrator stays your choice. Compare LangGraph vs CrewAI vs a vanilla loop, read the direct agentFast vs LangGraph breakdown, or weigh the cost of rolling your own.
agentFast is the production layer — memory, 50 tools, observability, evals, guardrails, human-in-the-loop — for LangGraph, CrewAI, the Claude & OpenAI Agent SDKs & Vanilla. Own it for life.
Get agentFast — from $89