# LLM Cost Calculator

> Free tool #1

Estimate the monthly cost of any model from your token volumes.

## Three ways to use it

**Web** — the interactive page: https://telemeter.ai/tools/llm-cost-calculator

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

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

```json
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "model": {
      "type": "string",
      "minLength": 1
    },
    "inputTokens": {
      "type": "integer",
      "minimum": 0,
      "maximum": 1000000000000
    },
    "outputTokens": {
      "type": "integer",
      "minimum": 0,
      "maximum": 1000000000000
    },
    "cacheReadTokens": {
      "type": "integer",
      "minimum": 0,
      "maximum": 1000000000000
    },
    "cacheCreationTokens": {
      "type": "integer",
      "minimum": 0,
      "maximum": 1000000000000
    },
    "reasoningTokens": {
      "type": "integer",
      "minimum": 0,
      "maximum": 1000000000000
    }
  },
  "required": [
    "model",
    "inputTokens",
    "outputTokens"
  ],
  "additionalProperties": false
}
```

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