Contract
{
"type": "object",
"required": [
"slug"
],
"properties": {
"slug": {
"type": "string",
"description": "The model slug identifying the model (e.g., 'gpt-5-6-sol', 'gpt-5-6-terra-high', 'claude-sonnet-4')"
}
},
"additionalProperties": false
}{
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"model": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Full display name, e.g. 'GPT-5.6 Sol (max)'."
},
"slug": {
"type": "string",
"description": "The model slug, echoing the input."
},
"ttft": {
"type": "number",
"description": "Time to first token, seconds."
},
"short_name": {
"type": "string",
"description": "Short display name; identical to `name` on the one real call observed."
},
"coding_index": {
"type": [
"number",
"null"
],
"description": "Coding-specific benchmark score; null on the one real call observed -- not every model has a coding-specific evaluation."
},
"cost_per_task": {
"type": "number",
"description": "USD, average total cost to run the benchmark's standard task."
},
"time_per_task": {
"type": "number",
"description": "Seconds, average total time to complete the standard task."
},
"intelligence_index": {
"type": "number",
"description": "The benchmark's aggregate reasoning/quality score for this model."
},
"coding_cost_per_task": {
"type": [
"number",
"null"
],
"description": "USD, coding-task variant of `cost_per_task`; null when not evaluated."
},
"coding_time_per_task": {
"type": [
"number",
"null"
],
"description": "Seconds, coding-task variant of `time_per_task`; null when not evaluated."
},
"input_tokens_per_task": {
"type": "number"
},
"output_tokens_per_task": {
"type": "number"
},
"cost_per_task_breakdown": {
"type": "object",
"properties": {
"cache_hit": {
"type": "number"
},
"cache_write": {
"type": "number"
},
"input_tokens": {
"type": "number"
},
"output_tokens": {
"type": "number"
},
"reasoning_tokens": {
"type": "number"
}
},
"description": "USD contribution of each token category to `cost_per_task`.",
"additionalProperties": true
},
"end_to_end_response_time": {
"type": "number",
"description": "Seconds."
},
"reasoning_tokens_per_task": {
"type": "number"
},
"coding_cost_per_task_breakdown": {
"type": [
"object",
"null"
],
"description": "Coding-task variant of `cost_per_task_breakdown`; null when not evaluated. Shape unconfirmed beyond null since no populated example was captured.",
"additionalProperties": true
}
},
"additionalProperties": true
}
},
"additionalProperties": true
},
"status": {
"type": "string",
"description": "'success' on the one populated real call observed."
}
},
"description": "The cost-per-task record, as returned at routing.responseResultPath ($.output).",
"additionalProperties": true
}Pricing
Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.
Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.
| Charge | Rate |
|---|---|
Per call Flat, regardless of what comes back | $0.1365 |
- Cost basis
- Not recorded
This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.
- Updated
- Sep 23, 2026
