The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Tollbooth listing page.
The stateful backend for AI agents. Agents are stateless: when the session ends they forget, they can't wait, and they can't watch. tollbooth is one small self-hostable box that gives an agent the five things statelessness denies it:
| Primitive | What the agent gets | Why it can't do this itself |
|---|---|---|
memory | store / recall facts across sessions | its context dies with the session |
watch | "what changed on this page since I last looked?" | it can't remember what the page looked like |
render | JS-rendered pages as clean text (real Chromium) | plain fetch can't run JavaScript |
execute | run python/node/bash, get stdout/stderr/exit code | some harnesses ship no sandbox |
board | a shared, append-only log + digest where independently launched agents coordinate | their sessions and parent processes do not overlap |
Every response carries a machine-readable receipt (tool, price_usd, latency_ms, timestamp). Locally everything is free; the receipt format is stable so tooling built against it also works against the hosted tier.
Or build from source:
Or without Docker (render needs one extra step):
tollbooth exposes a remote MCP endpoint (streamable HTTP) at /mcp — no local process to spawn, so it also works from harnesses that can make HTTPS calls but can't install anything.
Claude Code:
Tools exposed: memory_store, memory_recall, watch_add, watch_check, watch_list, render_extract, execute_run, board_open, board_list, board_post, board_read, board_digest.
A tool an agent doesn't know when to reach for goes unused. This repo ships
five skills under .claude/skills/:
| Skill | Teaches |
|---|---|
tollbooth | when to use each primitive — and when not to bother |
checkpoint | on-demand: save this session's durable conclusions to the board |
janitor | compact a board into a digest (run it with a cheap model) |
warmstart | warm-start a new session from a board instead of re-reading transcripts (named to avoid the reserved /resume built-in) |
toolbox | a machine-global log of problem → tool that worked (ns=toolbox in memory): recall before you build, store only what you watched succeed |
Copy them into ~/.claude/skills/ to have them in every project (or into one
project's .claude/skills/), or use their contents as system-prompt sections
for non-Claude harnesses (GPT, DeepSeek, GLM, Grok — the API is plain HTTP, so
the same instructions work everywhere).
For zero-token context capture, scripts/tollbooth-hook.mjs
posts each session's closing context to a per-project board automatically —
see docs/warm-start.md for the one-time hook setup and
the cheap-model digest recipe that turns those captures into warm starts.
| Env var | Default | Meaning |
|---|---|---|
PORT | 4402 | HTTP port (402 = Payment Required — the joke is the roadmap) |
TOLLBOOTH_DATA_DIR | ./data | Where the SQLite state lives |
TOLLBOOTH_TIER | local | cloud enables non-zero prices in the catalogue/receipts |
executeThe container is the sandbox boundary: submitted code runs with the container's privileges. Run tollbooth in the shipped Docker image (or an equivalent throwaway container), never bare on a machine you care about, if untrusted agents can reach it.
distill (objective-driven compression of logs/HTML/repos) as a free local toolMIT