The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Cheaplane listing page.
Keep your premium subscription on the main thread. Offload the grunt work to cheap models — Cheaplane even picks the right one for you. Stop burning premium tokens on boilerplate.
Cheaplane is a tiny single-file MCP server (~250 lines, stdlib + mcp only) that gives your main agent — e.g. Claude Code on a Max subscription — one extra tool: delegate. Your agent keeps doing the thinking (planning, architecture, final review) and hands replaceable grunt work — boilerplate code, formatting, translation, summarizing long docs — to cheap models behind a local LiteLLM proxy (DeepSeek, Kimi, Qwen, …). Think of it as a cheap intern for your premium agent — it churns out the boring parts while you keep thinking.
The trick that makes it safe: the delegated calls and your subscription live in physically separate processes and never share credentials. (why that matters ⬇️)
The trick that makes it effortless: auto-routing. delegate(task) picks the right cheap model from the task itself — code → DeepSeek, long docs → Kimi, Chinese → Qwen. (how ⬇️)
The trick that makes it stick: a per-turn reminder hook so your agent doesn't forget the tool exists — the part most "delegate" tools skip. And a savings ledger shows you what it kept off your quota.
See it in action — your agent hands a chore over; auto-routing sends it to the cheap code model:
↑ a real call's output — not a mockup, and no model picked by hand. That token cost ~90× less than your premium model, and your subscription quota never moved.
Premium models earn their price on hard problems — but every token counts against your plan, and you burn through quota on churn: reformatting JSON, translating UI strings, summarizing a doc you'll read once. The usual "just use a cheap model" setups force an ugly choice:
Cheaplane keeps the sweet spot: premium main thread for judgment + cheap models for the churn + billing that physically can't cross.
The popular 2026 move is to swap your whole agent onto a cheap model (DeepClaude-style). Great for raw cost — but it downgrades the thread you actually think with, breaks your other MCP tools, and doesn't even apply if you're on a Pro/Max subscription. Cheaplane takes the opposite bet:
| Swap whole agent → cheap model (DeepClaude-style) | Everything via one API key | Cheaplane | |
|---|---|---|---|
| Main thread | ⬇️ downgraded | ⬇️ no more subscription | ✅ stays premium |
| Your other MCP tools | ❌ break | ✅ | ✅ (it is an MCP server) |
| Works on a Pro/Max subscription | ❌ API-key only | ❌ replaces it | ✅ built for it |
| Picks the cheap model for you | ❌ one model for everything | ❌ | ✅ auto routing |
| Shows what you saved | ❌ | ❌ | ✅ savings ledger |
| Billing | merged into one | one per-token bill | 🔒 subscription + cheap, isolated |
Comparison reflects how backend-swap setups (DeepClaude-style) behaved per public reports in mid-2026; specifics vary by tool and can change.
The grunt work is the easy part — paying premium rates for it is pure waste. Per million tokens (public list prices, mid-2026):
| Model | Input | Output | Best for |
|---|---|---|---|
| Claude Opus (API, for reference) | $5.00 | $25.00 | the judgment work you keep |
| DeepSeek V4 Flash | $0.14 | $0.28 | code / formatting |
| Kimi K2 | $0.60–0.95 | $2.50–4.00 | long docs (very large context) |
| Qwen | $0.05–0.40 | $0.20–1.20 | Chinese copy |
That's an output token costing ~$25 on Opus vs ~$0.28 on DeepSeek — about 90× more for work that doesn't need the smarts. You're on a subscription, so you don't pay that $25 directly — your main thread spends quota, not dollars. That's the whole point: every routine task you offload is premium quota you keep for the hard problems. (Summarizing a 40-page doc on DeepSeek Flash runs ~$0.005 — your quota never even notices.)
Prices are public list rates, mid-2026, and vary by tier/caching — check each provider. The stable takeaway is the order-of-magnitude gap, not an exact dollar saving.
Most "save money" hacks blur your bills together. Cheaplane keeps them physically apart:
The Cheaplane process never imports your subscription provider's SDK, never reads its auth, never touches its OAuth token. It knows exactly one thing: an HTTP endpoint (your proxy) and its key. Your main thread bills to your subscription; delegated calls bill to your cheap proxy. The two can't cross — not by policy, by architecture.
Fastest path — Claude Code, one script:
setup.sh is idempotent (safe to re-run): it installs deps, registers the delegate MCP server with Claude Code, installs the per-turn reminder hook, and verifies the chain end-to-end. Then start a fresh Claude Code session — done.

Prefer a package? Cheaplane is on PyPI — no clone, no path to hard-code:
You still want the proxy from step 1 below, and the reminder hook is worth it — that part needs the repo.
setup.sh does under the hood1. Get an OpenAI-compatible endpoint for the cheap models. Most people run LiteLLM locally as a proxy in front of DeepSeek / Kimi / Qwen. A minimal config is ~5 lines:
That model_name: deepseek lines up with Cheaplane's default alias, so it works out of the box. (deepseek is a built-in LiteLLM provider — no api_base needed; you'd add one only for a custom or self-hosted endpoint.) Already have an OpenAI-compatible endpoint (LiteLLM, OpenRouter, Ollama, vLLM…)? Skip this and just point DELEGATE_BASE_URL at it.
2. Install Cheaplane — from PyPI, or from a clone if you also want the reminder hook and probe.py:
3. Register it with your MCP client. Installed from PyPI — the command is already on your PATH:
From a clone — copy .mcp.json.example to .mcp.json in the repo root and fix the path (or use claude mcp add):
4. Verify it end-to-end — with your proxy from step 1 running (handshake → list tools → a real delegated call):
delegateYour agent now has delegate(task) — routing is automatic; override only when you want to:
| alias | good for |
|---|---|
auto | default — picks one of the below from the task itself |
deepseek | code / balanced |
mimo | reasoning / multi-step |
flash | fast / formatting / translation |
kimi | long documents (very large context) |
qwen | Chinese copywriting |
Aliases map to your LiteLLM model_names. Point them at your proxy without editing code — set the DELEGATE_MODEL_MAP env var (a JSON object), or drop a ~/.claude/delegate-model-map.json (hot-reloaded — no restart needed); editing MODEL_ALIASES in server.py also works.
Delegate (let the cheap model do it):
Keep (you do it yourself):
The delegated model sees only your task string — it has no access to your conversation. Make each task self-contained: spec + the actual input + the exact output format you want.
Every delegated call appends one line of metadata only — never the task content — to ~/.cheaplane/usage.jsonl. Ask your agent for savings any time (sample output):
Numbers are estimates at public list prices — the real win is the premium quota that never left your subscription. The ledger records token counts and model names only; delete the file any time, or set DELEGATE_NO_LOG=1 to turn logging off entirely.
Here's the dirty secret of every "delegate to a cheap model" tool: installing it isn't the hard part — getting your agent to actually use it is. Drop a tool into an agent and, a few turns into a real task, it forgets the tool exists and grinds through the grunt work itself on premium tokens. The instruction sinks down the context; attention moves on.
Cheaplane ships the fix in the box — three layers you can stack:
SKILL.md) — teaches the agent when to delegate. Works on any client; passive, so treat it as the baseline.CLAUDE.md / system prompt: "Before doing replaceable grunt work yourself, delegate it." Stronger — but a static instruction still drifts down a long conversation.On other MCP clients (no UserPromptSubmit hook system), use layers 1–2 — wire the one-liner into whatever system prompt your client supports.
Install the hook — safe and idempotent (backs up your settings, merges instead of overwriting, de-dupes on re-run):
Start a fresh session, and your agent self-checks every turn: "is this replaceable grunt work? → delegate it."
The reminder costs ~60 tokens per turn — trivially less than the hundreds of premium tokens a single forgotten delegation burns. The hook uses Claude Code's UserPromptSubmit mechanism.
| Env var | Default | Meaning |
|---|---|---|
DELEGATE_BASE_URL | http://localhost:4000 | OpenAI-compatible endpoint (your proxy) |
DELEGATE_API_KEY | sk-litellm | key for that endpoint |
DELEGATE_TIMEOUT | 120 | per-call timeout (seconds) |
DELEGATE_MODEL_MAP | (none) | JSON remapping aliases, e.g. {"deepseek":"deepseek-v4-flash"} — overrides defaults, no code edit |
DELEGATE_LOG | ~/.cheaplane/usage.jsonl | where the savings ledger lives |
DELEGATE_NO_LOG | (unset) | set to 1 to disable the ledger entirely |
Will this leak my subscription credentials?
No. The delegate tool runs in its own process and only ever makes a plain HTTP call to the endpoint you configure. It never imports your subscription SDK and never sees its auth — see Billing isolation.
What exactly does the savings ledger record?
One JSON line per call: timestamp, alias, model name, and token/character counts. Never the task text, never the model's output. Delete ~/.cheaplane/usage.jsonl any time, or set DELEGATE_NO_LOG=1.
How does auto decide which model to use?
A small deterministic heuristic in server.py (_pick_model, ~20 lines you can read and tweak): code signals → deepseek, very long input → kimi, Chinese-heavy → qwen, multi-step language → mimo, short mechanical chores → flash. An explicit alias always overrides it.
How is this different from just using one API key for everything? With a single API key you stop using your subscription entirely and pay per token for all work — including the hard parts. Cheaplane keeps your subscription as the premium main thread and sends only the cheap, replaceable churn elsewhere.
Does it work with anything besides Claude Code? Yes — any MCP-compatible client (Cursor, Cline, Windsurf, …). The main agent just needs to support MCP tools; see Manual setup for the generic JSON config.
Do I have to use DeepSeek / Kimi / Qwen?
No. Anything reachable through an OpenAI-compatible endpoint works; the aliases are just convenience labels you can remap with DELEGATE_MODEL_MAP.
Why a proxy instead of calling providers directly? One endpoint, one key, usage logging, and easy model swaps — and it keeps provider keys out of the MCP server entirely.
Cheaplane's core stays deliberately tiny — but the surface it opens up is big. Shipped so far: ✅ auto-routing (v0.2), ✅ savings ledger (v0.2). Still worth building — proposals and PRs welcome, and most are small enough to be good first issues:
cheaplane stats HTML view would be lovely.UserPromptSubmit; Cursor / Cline / others want their own nudge.Design rule: keep the core single-file and dependency-light — that's the whole point. Build extensions as opt-in, so the 5-minute read stays a 5-minute read.
Issues and PRs welcome — it's ~250 lines of single-file Python with no heavy deps, easy to hack on. Add a useful model alias, a routing signal, or a client recipe and send it over.
MIT — see LICENSE.