# Agent Cost Decomposer

> Free tool #12

Paste a multi-step agent trace and see the cost of every step — by model, by driver, and any retry loop burning through it.

## Three ways to use it

**Web** — the interactive page: https://telemeter.ai/tools/agent-cost-decomposer

**MCP** — a `tools/call` on the public MCP server at https://telemeter.ai/mcp (tool name: `agent-cost-decomposer`), read-only, no key required.

**REST** — `POST https://telemeter.ai/api/tools/agent-cost-decomposer` with a JSON body matching the input schema below:

```json
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "trace": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200000
    }
  },
  "required": [
    "trace"
  ],
  "additionalProperties": false
}
```

[Open the interactive page](https://telemeter.ai/tools/agent-cost-decomposer) · [Every tool and doc, machine-readable](https://telemeter.ai/llms.txt)
