# Embedding/RAG Cost Estimator

> Free tool #17

Project the cost of embedding your corpus once and searching it every month — the embedding spend behind a RAG pipeline, before storage or retrieval compute.

## Three ways to use it

**Web** — the interactive page: https://telemeter.ai/tools/rag-cost-estimator

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

**REST** — `POST https://telemeter.ai/api/tools/rag-cost-estimator` 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
    },
    "corpusTokens": {
      "type": "number",
      "minimum": 1,
      "maximum": 1000000000000
    },
    "chunkOverlapPct": {
      "default": 0,
      "type": "number",
      "minimum": 0,
      "maximum": 50
    },
    "monthlyQueries": {
      "type": "number",
      "minimum": 0,
      "maximum": 1000000000
    },
    "avgQueryTokens": {
      "default": 50,
      "type": "number",
      "minimum": 1,
      "maximum": 100000
    },
    "reembedsPerYear": {
      "default": 0,
      "type": "number",
      "minimum": 0,
      "maximum": 52
    }
  },
  "required": [
    "model",
    "corpusTokens",
    "chunkOverlapPct",
    "monthlyQueries",
    "avgQueryTokens",
    "reembedsPerYear"
  ],
  "additionalProperties": false
}
```

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