tbcontracts-mcp
Provides observability integration by emitting OpenTelemetry spans and gen_ai.client.token.usage counters for spend recording, allowing token usage metrics to be exported to compatible backends.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@tbcontracts-mcpreallocate spare tokens from low-priority agents to researcher"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
tbcontracts-mcp
An MCP (Model Context Protocol) server that exposes
token-budget-contracts
as tools, so any MCP-aware client (Claude Code, Claude Desktop, Cursor,
etc.) can manage token budgets across a multi-agent LLM system.
What this actually does
Multi-agent orchestrators (a planner spawning a researcher, a writer, a critic, ...) burn tokens unevenly. A high-priority agent can starve mid-task while a low-priority agent sits on unused budget. This server's one job is answering, in real time: given these agents' priorities and current spend, how should the remaining budget move right now?
It does this by wrapping token-budget-contracts'
priority-weighted Reallocator: spare budget flows from idle or
lower-priority agents to whichever agent is actually starved, never
below a donor's protected minimum reserve, and never "uphill" from a
more important agent to a less important one.
This is not a cost-tracking dashboard or a network gateway. See Honest scope below.
Related MCP server: spiderswitch
Install
pip install tbcontracts-mcpThis pulls in token-budget-contracts>=0.3.0 and opentelemetry-api as
dependencies. Requires Python 3.10+ (see Why not Python 3.9).
Tools
Tool | What it does |
| Register an agent with a priority weight and initial token budget. |
| Record raw input/output tokens an agent consumed for a task. Automatically triggers priority-weighted reallocation if the agent goes over budget. |
| Look up one agent's current remaining budget, priority, and reserve. |
| The core tool. Given an agent that needs more tokens right now, runs the real priority-weighted borrowing logic and returns a concrete plan: which agents gave up how much, which agent received it, and why each donor was eligible. |
| Full current state of every registered agent, as structured JSON. |
Every tool takes a strict, typed JSON input schema and returns structured
JSON ({"success": true/false, ...}) - never free text - so a calling
agent or orchestrator can parse the result programmatically.
Error handling
Unknown agent IDs, invalid input, and budget-exceeded conditions all come back as a structured error, never a stack trace:
{
"success": false,
"error": {
"type": "unknown_agent",
"message": "Agent 'ghost' was never registered. Call register_agent first.",
"agent_id": "ghost",
"known_agents": ["critic", "researcher"]
}
}Error type is one of unknown_agent, invalid_input, budget_exceeded,
tbcontracts_error, or internal_error. A bad tool call never crashes
the server process - the MCP client keeps working.
Quick start (as a library, for testing)
from tbcontracts_mcp import server
server.register_agent(agent_id="researcher", priority=3, max_tokens=4000)
server.register_agent(agent_id="critic", priority=1, max_tokens=2000)
server.record_spend(agent_id="researcher", input_tokens=3800, output_tokens=100)
# -> over budget by 400 tokens; automatically borrows from critic
plan = server.request_reallocation(agent_id="researcher", tokens_needed=1000)
print(plan)Normally you won't call these functions directly - an MCP client calls them as tools over stdio. See the client configs below.
Using it from an MCP client
The server runs over stdio and needs no network setup - just point your
client at the tbcontracts-mcp command.
Claude Code
claude mcp add tbcontracts -- tbcontracts-mcpOr add it directly to .mcp.json:
{
"mcpServers": {
"tbcontracts": {
"command": "tbcontracts-mcp"
}
}
}Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"tbcontracts": {
"command": "tbcontracts-mcp"
}
}
}Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"tbcontracts": {
"command": "tbcontracts-mcp"
}
}
}Any of these can equally run it via python -m tbcontracts_mcp instead of
the console script, e.g. if you've installed it into a specific venv:
{
"mcpServers": {
"tbcontracts": {
"command": "/path/to/venv/bin/python",
"args": ["-m", "tbcontracts_mcp"]
}
}
}Observability
Spend recorded through record_spend is emitted two ways, both additive
to your existing observability stack rather than replacing it:
The underlying library's own OTel spans.
token-budget-contractsalready instruments every governance decision (registration, spend, reallocation) as an OpenTelemetry span when telemetry is enabled. This server wiresrecord_spendstraight through that existing hook rather than building a parallel tracer - setTBCONTRACTS_MCP_OTEL=1in the server's environment to turn it on (uses the global OTel tracer provider; configure your exporter the usual OTel way).A
gen_ai.client.token.usagecounter, following the emerging OpenTelemetrygen_ai.*semantic conventions, emitted viaopentelemetry-apifor everyrecord_spendcall. This tracks raw input/output token counts per agent, not pre-computed dollar cost - pricing tables change constantly and a token counter shouldn't be coupled to one. Attach whatever OTelMeterProvider/exporter you like in the process that launches this server; if none is configured, this is a no-op.
Honest scope
tbcontracts-mcp is the allocation-decision layer for one thing:
priority-weighted budget reallocation between agents you've already told
it about. It is meant to be composed with other tools, not to replace
them. Specifically, it does not:
do cross-provider cost tracking. It emits raw token counters, not dollar costs, and has no notion of a pricing table for OpenAI, Anthropic, or anyone else.
do network-level rate limiting or gateway routing. It doesn't sit in the request path between your app and an LLM provider, and it can't throttle or route calls. Tools like Bifrost, MuleSoft, or Solo.io's gateways already do that well - use one of those alongside this.
replace an observability platform. It emits spans/counters you can send to Grafana, Datadog, Honeycomb, etc., but it isn't a dashboard, storage backend, or alerting system itself.
What it does do: given the agents you've registered and their current spend, decide - and actually execute - how unused budget should move between them right now, based on priority.
Why not Python 3.9?
token-budget-contracts itself supports Python 3.9+, but the official
mcp Python SDK this server depends on has never supported Python 3.9
(it requires 3.10+ on every released version). This package therefore
requires Python 3.10+, even though the library it wraps does not.
Development
git clone https://github.com/swaranshu-borgaonkar/tbcontracts-mcp
cd tbcontracts-mcp
pip install -e ".[dev]"
pytest -vLicense
MIT for the code in this package. token-budget-contracts, which this
server wraps, implements the governance model described in a pending
U.S. provisional patent application (see its own README for details). If
you plan to use this commercially at scale, consult your own counsel.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceAn MCP server that reduces token usage by lazily loading skills and tools only when needed, and routing repetitive subtasks to ML backends instead of the LLM.
- Alicense-qualityBmaintenanceMCP server that enables agents to dynamically switch between multiple AI models (OpenAI, Anthropic, Google, etc.) with unified protocol-driven configuration and capability discovery.Apache 2.0
- Alicense-qualityAmaintenanceBudget management and cost tracking MCP server for autonomous agents, enabling budget creation, cost recording, spending projections, and alert rules.MIT
- Flicense-qualityCmaintenanceToken-optimized multi-agent orchestration MCP server that owns session state, compacts context between agent hops, routes work to smaller models when safe, and reports estimated token savings.1
Related MCP Connectors
Agent Cost Allocator MCP — multi-tenant LLM cost attribution for chargeback billing. Companion to
Hosted MCP server for LLM cost estimation, model comparison, and budget-aware routing.
Agent Token Budget MCP — hard per-session token + spend cap with signed budget-exhausted
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/swaranshu-borgaonkar/tbc-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server