Offload grunt work from your premium agent to cheap models — auto-routing and billing isolation.
MCPpedia last refreshed this data
io.github.millennialdreamer/cheaplane is an MCP server that offload grunt work from your premium agent to cheap models — auto-routing and billing isolation. Its tool list has not been published yet over stdio, sse and http, requires no API key, and scores 59/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"delegate": {
"command": "cheaplane"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
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.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'cheaplane' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked cheaplane against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance / maps
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
HoneyBook client-portal MCP server for Claude — view contracts and invoices from wedding vendors
Self-custody Ethereum agent wallet (MCP/stdio). Keys stay in a local Docker volume.
MCP server for QuickBooks Online — accounts, customers, invoices, bills, and reports.
MCP Security Weekly
Get CVE alerts and security updates for io.github.millennialdreamer/cheaplane and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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:
delegate("convert to a TypeScript interface: {id, name, email, isAdmin, roles[]}")
interface User {
id: number;
name: string;
email: string;
isAdmin: boolean;
roles: string[];
}
↑ 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 | ❌ | ✅ ` |