# MCP Schema Token-Cost Validator

> Free tool #19

See how many tokens your MCP tool schemas add to every request — and what that overhead costs.

## Three ways to use it

**Web** — the interactive page: https://telemeter.ai/tools/mcp-schema-token-cost

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

**REST** — `POST https://telemeter.ai/api/tools/mcp-schema-token-cost` 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
    },
    "toolsJson": {
      "type": "string",
      "minLength": 1,
      "maxLength": 600000
    }
  },
  "required": [
    "model",
    "toolsJson"
  ],
  "additionalProperties": false
}
```

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