Server data from the Official MCP Registry
Per-agent spend management: x402/MPP/API-key rails, budget caps, anomaly alerts, audit trails.
About
Per-agent spend management: x402/MPP/API-key rails, budget caps, anomaly alerts, audit trails.
Remote endpoints: streamable-http: https://agent-ledger-production-0ff8.up.railway.app/mcp/
Security Report
Remote MCP endpoint verified (117ms response). Server: agent-ledger. 3 trust signals: valid MCP protocol, known domain (railway.app), registry import. No security issues detected.
Endpoint verified · Open access · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
Remote servers are capped at 8.0 because source code is not available for review. The score reflects endpoint verification only.
Permissions Required
This plugin requests these system permissions. Most are normal for its category.
How to Connect
Remote Plugin
No local installation needed. Your AI client connects to the remote endpoint directly.
Add this to your MCP configuration to connect:
{
"mcpServers": {
"io-github-entradox-agent-ledger": {
"url": "https://agent-ledger-production-0ff8.up.railway.app/mcp/"
}
}
}Documentation
View on GitHubFrom the project's GitHub README.
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://agent-ledger-production-0ff8.up.railway.app/mcp/
Codex:
codex mcp add agent-ledger --url https://agent-ledger-production-0ff8.up.railway.app/mcp/
Cursor — merge into mcp.json:
{
"mcpServers": {
"agent-ledger": {
"url": "https://agent-ledger-production-0ff8.up.railway.app/mcp/"
}
}
}
Any other MCP client: point it at the streamable-http remote
https://agent-ledger-production-0ff8.up.railway.app/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://agent-ledger-production-0ff8.up.railway.app/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://agent-ledger-production-0ff8.up.railway.app/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://agent-ledger-production-0ff8.up.railway.app/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://agent-ledger-production-0ff8.up.railway.app/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.
Install (MCP clients)
{
"mcpServers": {
"agent-ledger": {
"url": "https://agent-ledger-production-0ff8.up.railway.app/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
- Budget enforcement — warns at 80% of cap, blocks spend when exceeded
- Anomaly detection — spending-spike alerts per agent
- Audit trails — every entry persisted with rail, service, and timestamp
- 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
- 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
Reviews
No reviews yet
Be the first to review this server!
More Finance MCP Servers
Toleno
Freeby Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
mcp-creator-python
Freeby mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.
MCP Marketplace
Freeby mcp-marketplace · Developer Tools
Search and install MCP servers from inside your AI client.
MarkItDown
Freeby Microsoft · Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption
FinAgent
Freeby mcp-marketplace · Finance
Free stock data and market news for any MCP-compatible AI assistant.
Google Workspace MCP
Freeby Taylorwilsdon · Productivity
Control Gmail, Calendar, Docs, Sheets, Drive, and more from your AI
