Skip to content
Back to search
100
MCP live MCP 2025-11-25 streamable-http

io.github.jdhart81/agent-metering

io.github.jdhart81/agent-metering

Usage metering + SLA accounting for agent services (the meter behind x402 micropayments).

Uptime
100.0%
1 direct probes · 30d
Response
542ms
last probe
Tools
11
callable
Resources
0
readable
Prompts
0
available

Tools · 11

create_meter

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_usage

Record a usage event. Idempotent on event_id (safe to retry — never double-billed). outcome is 'ok' or 'error' and feeds the SLA report.

usage_summary

Totals for a meter: event count, total quantity, accrued minor units.

sla_report

Pure SLA report: success_rate vs sla_target, breach flag. No mutation.

close_period

Freeze all open events into an immutable invoice (exactly-once). The invoice amount is what agent-escrow-agent should settle.

verify_chain

Verify the tamper-evident event hash chain for a meter.

list_meters

List all meters with event/invoice counts.

list_events

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_timeseries

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…

flag_meter

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…

describe_agent

Fleet-standard self-description.

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"
    }
  }
}