AgentLedger — Per-Agent Spend Management
Track AI agent spend across x402/MPP/API-key rails, set budget caps, catch spending anomalies, keep audit trails. The "Datadog for agent spending" — the #1 verified community ask from agent builders.
🎯 Launch window: the first 50 workspaces created get Pro free for 1 year. No card — sign in once and the grant is automatic.
Connect AgentLedger
Connecting takes no auth handshake. Before your first write you need a workspace_key, which you get one of two ways:
- Autonomous agent with a wallet:
POST /v1/billing/x402with anX-PAYMENTheader. The paying wallet becomes the workspace identity — no email, no login, no human in the loop. - Human: open
/start— no signup, no login, no card. The workspace_key is shown once, right there, and the page carries the upgrade link for that workspace.
The key claims new agent_ids. Each claim mints that agent's own
agent_secret, which is what authenticates every later write — the
workspace_key is never needed again for that agent.
Claude Code:
claude mcp add --transport http agent-ledger https://aiagentscity.com/mcp/
Codex:
codex mcp add agent-ledger --url https://aiagentscity.com/mcp/
Cursor — merge into mcp.json:
{
"mcpServers": {
"agent-ledger": {
"url": "https://aiagentscity.com/mcp/"
}
}
}
Any other MCP client: point it at the streamable-http remote
https://aiagentscity.com/mcp/ — no headers,
no auth handshake required to connect.
Try these prompts once connected:
- "Track my Claude Code spend"
- "Alert when any agent exceeds $50/day"
- "Weekly P&L report"
Try it — get a key, then track
# Track a spend — the FIRST call for a new agent_id CLAIMS it, so it needs
# your workspace_key, and it returns that agent's agent_secret.
# Save the secret: every later write (track/budget) to this agent_id uses it
# instead, and needs no workspace_key.
curl -X POST https://aiagentscity.com/v1/track \
-H "Content-Type: application/json" \
-H "AL-API-Version: 2026-09-01" \
-d '{"agent_id":"my-agent","rail":"x402","amount_cents":100,"service":"search_query","workspace_key":"YOUR_WORKSPACE_KEY"}'
# Set a monthly budget cap — pass the agent_secret from above
curl -X POST https://aiagentscity.com/v1/budget \
-H "Content-Type: application/json" \
-H "AL-API-Version: 2026-09-01" \
-d '{"agent_id":"my-agent","monthly_cents":5000,"agent_secret":"YOUR_SAVED_SECRET"}'
# Spend report + anomalies — requires the agent_secret from above
curl https://aiagentscity.com/v1/report/my-agent \
-H "X-Agent-Secret: YOUR_SAVED_SECRET"
Want to just look at it? Every agent has a human-readable page (send the
secret as a header, no curl needed for the JSON):
https://aiagentscity.com/v1/report/my-agent/html
/v1/report, /v1/tokens, and /v1/alerts all require either
X-Agent-Secret: <agent's secret> or X-Workspace-Key: <the workspace's key>
— missing or wrong credential gets 401. Headers only: there is no cookie or
session arm, and no unauthenticated read path on REST or MCP. This is what
stops a stranger from reading or overwriting someone else's agent_id.
Note this is a deliberate break from AgentLedger's earlier "share the link, anyone can read it" behavior — traded for real isolation between customers.
Two lines to a metered, capped agent
pip install "aiagentscity-ledger[wrapper]" # client only: the wrapper + the CLI
agent-ledger init --agent my-agent # mints a workspace, claims the agent, writes .env
from openai import OpenAI
import agentledger
client = agentledger.wrap(OpenAI(api_key=OPENAI_KEY),
agent_id="my-agent", agent_secret="<from .env>")
That is the whole integration. wrap() repoints the client's base URL at the proxy and
adds two identity headers — it does not patch or subclass the SDK, so streaming, tool
calls and retries behave exactly as before. Anthropic's client works identically. Your
provider key is forwarded untouched and never stored.
Not using a Python SDK? Point any OpenAI- or Anthropic-compatible client at
<base>/proxy/openai/v1/ (or /proxy/anthropic) with X-AL-Agent and X-AL-Secret.
Install (MCP clients)
{
"mcpServers": {
"agent-ledger": {
"url": "https://aiagentscity.com/mcp/"
}
}
}
Tools: ledger_track, ledger_set_budget, ledger_report, ledger_alerts,
ledger_list_agents, ledger_api_docs, ledger_examples.
Agent-facing API reference: llms.txt
Runnable code recipes: recipes.md
Features
- Multi-rail neutral — x402, MPP, API keys, manual entries; not locked to one payment rail
- Token→cost auto-pricing — send tokens + model and the dollar amount is computed for you; an unpriced model is refused rather than silently recorded as free
- Budget enforcement — warns at 80% of cap, rejects the ledger write that would cross it
- Any provider, config not code —
providers.jsonlists the vendors the proxy can forward to (OpenAI, Anthropic, DeepSeek and Moonshot ship as examples); adding one is a config edit - Proxy enforcement (the real thing) — point your provider
base_urlat/proxy/{provider}and a call that would cross the cap is refused before the provider is contacted, so the money is never spent. Pass-through: your provider key is forwarded, never stored - Anomaly detection — spending-spike alerts per agent
- Alerts that arrive — push budget warnings (80%), real budget blocks, and anomalies to an http(s) webhook you own; every delivery attempt is receipted, failures included
- Audit trails — every entry persisted with rail, service, and timestamp
- Shareable report links —
POST /v1/report/{agent_id}/sharemints a read-only, expiring URL that opens in a plain browser (no header, no credential); revoke the lot in one call - Credential recovery — a lost
agent_secretnever bricks an agent_id: the workspace_key mints a replacement (POST /v1/agents/{agent_id}/rotate-secret) or revokes it while keeping the spend history - Per-workspace isolation — your agents, your cap, your subscription; nothing is shared across customers
- Free tier: 3 agents per workspace (first 50 workspaces get Pro free for 1 year) — Pro $19/mo for unlimited tracked agents: Get Pro
Architecture
- Core engine (
ledger_engine.py): per-agent JSONL ledgers, budget state, alert log, per-agent secret (ensure_agent_secret— a new claim requires aworkspace_key, and mints the agent's ownagent_secretfor every write after it) - Identity (
identity.py): the single place a caller is resolved —agent_secretorworkspace_key, both header-borne. Every gate (claim, read, billing) calls into it rather than rolling its own check. - Workspaces (
workspace_engine.py): per-customer identity + plan state, keyed by wallet address (x402, no human) or by nothing at all for a plainPOST /startworkspace - REST API (
api_server.py, FastAPI): app creation, meta endpoints, the human start/buy pages and router includes; endpoints live inroutes_agents.pyandroutes_billing.py. Hosted streamable-http MCP at/mcp//v1/agents(full cross-tenant listing) is owner-only, requiresX-Al-Adminheader- Reads (
/v1/report,/v1/tokens,/v1/alerts) requireX-Agent-SecretorX-Workspace-Key; the MCP read tools take the same two credentials as parameters, so neither surface has an unauthenticated read path - Credential lifecycle:
POST /v1/agents/{agent_id}/rotate-secretand/revoke-secretare workspace_key-only. An agent's ownagent_secretdeliberately cannot rotate itself — if it could, a leaked agent credential would permanently lock its real owner out. Revoke overwrites the stored secret rather than deleting it, so the agent_id stays claimed and cannot be picked up by another workspace
- Input validation: agent_id restricted to
[A-Za-z0-9._-]{1,64}(path-traversal safe), rail whitelisted to mpp/x402/api_key/manual, amount + budget caps bounded [0, $100k] - Stripe webhook is fail-closed: events are rejected unless the HMAC signature
verifies against
STRIPE_WEBHOOK_SECRET_AL; a verifiedprocheckout marks that workspace Pro via itsclient_reference_id(Pro $19/mo ⇒ unlimited agents for that workspace only).
Contact
Release files for aiagentscity-ledger 0.4.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| aiagentscity_ledger-0.4.0.tar.gz | 75.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| aiagentscity_ledger-0.4.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 89.3 kB
Release files / aiagentscity_ledger-0.4.0.tar.gz
| Download URL | aiagentscity_ledger-0.4.0.tar.gz |
|---|---|
| Size | 75.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
cf91e6dfab87ae74aa6cf644c21ef299e0db5aed01f6bac8e77359ecacf5a70a
|
|
BLAKE2b-256 checksum How to use checksums |
4ab11741365818052a358042a63fb8c43dc05b5da4bb1bfc65056f967753adc2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.12
|
Release files / aiagentscity_ledger-0.4.0-py3-none-any.whl
| Download URL | aiagentscity_ledger-0.4.0-py3-none-any.whl |
|---|---|
| Size | 13.7 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
bf3911ae4c20627b1c45592c10816cfbb71546d606b6af465335075b4441cc8a
|
|
BLAKE2b-256 checksum How to use checksums |
64044e5d2943997d2612eaf45c677221626dc62ed8911c656f79b21bcc60cd7a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.12
|