Every AI build session is priced — usage and compute — debited from prepaid balance and turned into a clean receipt. Claude Code, Codex, VS Code, GitHub Copilot or any MCP client: no spreadsheets, no guessing what an AI build costs.
You’re the gateway — orchestrating models, MCP tools, and infrastructure. LLM Central turns that work into a bill, automatically.
You direct Claude Code across models, MCP tools, and infrastructure to build the app. You are the gateway.
When the session ends, a hook posts its usage. LLM Central prices the compute (four token classes, incl. cache).
It debits the prepaid balance through the ledger, fires an auto-top-up if needed, and issues the client a plain-language receipt.
Hourly billing breaks when AI collapses hours. LLM Central prices the orchestrated session instead — transparently to you, simply to the client.
Clients fund a balance up front. Each session debits it, and it refills automatically before it runs dry — billing never blocks a finished build.
Clients see “Loyalty app · $23.56 · balance $757.44.” Every receipt is signed; the token-level detail is your private audit trail.
Every debit, top-up, and adjustment is one immutable entry. Balances derive from the ledger and reconcile to the cent — nothing is untraceable.
A one-line Claude Code hook posts each finished session. Pricing, settling, and receipts happen with no manual step.
Add a SessionEnd hook to Claude Code and set the project you’re billing. Finished sessions post themselves — priced, settled, and receipted. Idempotent, so nothing double-charges.
{
"env": {
"LLMCENTRAL_URL": "https://llm-central.com",
"LLMCENTRAL_INGEST_TOKEN": "•••••••••",
"LLMCENTRAL_PROJECT": "verde-cafe-loyalty"
},
"hooks": {
"SessionEnd": [
{ "hooks": [
{ "type": "command",
"command": "node emit-session.mjs",
"timeout": 60 }
] }
]
}
}Beyond billing the builds you orchestrate, LLM Central fronts the models and MCP tools themselves. Issue each client an API key — with identity, access control, and full request logging — and every call meters into the same prepaid wallet, ledger, and receipt.
from openai import OpenAI
client = OpenAI(
api_key="llmc_your_client_key",
base_url="https://api.llm-central.com/v1",
)
# any model + your MCP tools,
# metered to the client's wallet
resp = client.chat.completions.create(
model="claude-opus-4-8",
messages=[{"role": "user", "content": "Ship it."}],
)Shared GPU compute for open-source models — spin up on our infrastructure and pay only for the hours you use. Live now, from $0.05 to $4.00/hr across the fleet, metered into the same prepaid wallet and receipt.
More GPUs and custom configurations available. For rates and provisioning, contact sales at [email protected].
Balances aren’t a number someone typed. They’re derived from an append-only ledger, written inside serializable transactions, idempotent on every gateway event. Each receipt is signed. Reconciliation is a subtraction, not a leap of faith.
Onboard a client, point the hook at their project, and finish a session. It bills itself — you watch it land.
Open the console