io.github.jdhart81/agent-metering
io.github.jdhart81/agent-meteringUsage metering + SLA accounting for agent services (the meter behind x402 micropayments).
Tools · 11
Create a usage meter between a provider and a consumer agent. unit: what is being counted (call, token, kwh, ...). Price is in minor currency units (cents) per unit. Returns the meter_id.
Record a usage event. Idempotent on event_id (safe to retry — never double-billed). outcome is 'ok' or 'error' and feeds the SLA report.
Totals for a meter: event count, total quantity, accrued minor units.
Pure SLA report: success_rate vs sla_target, breach flag. No mutation.
Freeze all open events into an immutable invoice (exactly-once). The invoice amount is what agent-escrow-agent should settle.
Verify the tamper-evident event hash chain for a meter.
List all meters with event/invoice counts.
Read usage events (paginated, read-only). Filter by meter, provider, consumer_class (internal|external|unknown), channel, outcome (ok|error), and ISO date range [since, until). Test-flagged ev…
Usage time series bucketed on each event's recorded_at (UTC; bucket=day|hour), grouped across meters by provider — a real time-series primitive, independent of meter creation times. Includes p…
Admin: flag/unflag a meter as test/synthetic so its events are excluded from usage statistics by default. Touches meter metadata only — never events, never the hash chain, never billing accrua…
Fleet-standard self-description.
Similar MCP servers embedding-nearest
How to use
Add to your Claude Desktop / Cursor / Cline MCP config:
{
"mcpServers": {
"io.github.jdhart81/agent-metering": {
"url": "https://mcp.viridisconservation.com/metering/mcp",
"transport": "streamable-http"
}
}
}