volthq-mcp-server
Provides price comparison, routing recommendations, and spend tracking for OpenAI AI models like GPT-4o and GPT-4o-mini.
Volt HQ
The compute price oracle for AI agents.
What it does
Compares pricing across 8 providers (OpenAI, Anthropic, Groq, Together AI, DeepInfra, Fireworks AI, Hyperbolic, Akash) — 106+ offerings with live API pricing
Recommends optimal routing — tells your agent where to get the same quality for less, with savings estimates
Tracks spend and budgets — spending summaries by provider/model, savings reports, and threshold alerts
Install
Auto-configure Cursor and Claude Desktop in one command:
npx volthq-mcp-server --setupDetects installed clients, merges config without overwriting your existing MCP servers.
Cursor — add to .cursor/mcp.json:
{
"mcpServers": {
"volthq": {
"command": "npx",
"args": ["-y", "volthq-mcp-server"]
}
}
}Claude Desktop — add to claude_desktop_config.json:
{
"mcpServers": {
"volthq": {
"command": "npx",
"args": ["-y", "volthq-mcp-server"]
}
}
}Tools
Tool | Description |
| Compare pricing across providers for a model |
| Get optimal provider recommendation with savings estimate |
| Spending summary by provider and model (today/7d/30d) |
| Actual spend vs optimized spend comparison |
| Set daily/weekly/monthly budget threshold alerts |
Example
> volt_check_price { "model": "llama-70b" }
Price comparison for "llama-70b" — 8 offerings found
────────────────────────────────────────────────────────────
1. DeepInfra — Llama-70B
Input: $0.20/M tokens | Output: $0.27/M tokens | Avg: $0.24/M
Quality: 88% | Region: global
2. Hyperbolic — Llama-70B (FP8) on H100-SXM
Input: $0.40/M tokens | Output: $0.40/M tokens | Avg: $0.40/M
Quality: 85% | Region: global
3. Hyperbolic — Llama-70B (BF16) on H100-SXM
Input: $0.55/M tokens | Output: $0.55/M tokens | Avg: $0.55/M
Quality: 88% | Region: global
4. Groq — Llama-70B
Input: $0.59/M tokens | Output: $0.79/M tokens | Avg: $0.69/M
Quality: 88% | Region: global
5. Fireworks AI — Llama-70B
Input: $0.70/M tokens | Output: $0.70/M tokens | Avg: $0.70/M
Quality: 88% | Region: global
6. Together AI — Llama-70B
Input: $0.88/M tokens | Output: $0.88/M tokens | Avg: $0.88/M
Quality: 88% | Region: global
7. Akash — Llama-70B (FP8) on H100-SXM
Input: $3.49/M tokens | Output: $8.72/M tokens | Avg: $6.11/M
Quality: 85% | Region: global
8. Akash — Llama-70B (FP8) on A100-80GB
Input: $5.24/M tokens | Output: $13.11/M tokens | Avg: $9.18/M
Quality: 85% | Region: global
Cheapest is 97% less than most expensive option.DeepInfra at $0.24/M, Hyperbolic at $0.40/M, Groq at $0.69/M, Fireworks AI at $0.70/M — all vs GPT-4o at $6.25/M.
Supported providers
OpenAI — GPT-4o, GPT-4o-mini
Anthropic — Claude Sonnet 4.6, Claude Haiku 4.5
Groq — Llama-70B, Llama-8B, Mixtral-8x7B
Together AI — Llama-70B, Llama-8B, DeepSeek-V3
DeepInfra — 75+ models with live API pricing (Llama, DeepSeek, Qwen, Mistral, Gemma, and more)
Fireworks AI — Llama-70B, Llama-8B, DeepSeek-R1
Hyperbolic — DeepSeek-V3, DeepSeek-R1, Llama-70B, Llama-8B
Akash — Llama-70B, Llama-8B on H100 and A100 (live GPU pricing)
Links
npm: volthq-mcp-server
Web: volthq.dev
Pricing: volthq.dev/pricing
License
MIT
Available Tools
5 toolsvolt_check_priceB
Compare pricing across providers for a given model. Returns offerings sorted by price with quality and reliability data.
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | Model name or partial match (e.g. "llama-70b", "gpt-4o", "deepseek") | |
| max_results | No | Maximum number of results to return (default: 5) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions that the tool returns sorted offerings with quality and reliability data, which adds some context about output behavior. However, it lacks details on critical aspects such as whether this is a read-only operation, potential rate limits, authentication needs, or error handling. For a tool with no annotations, this leaves significant gaps in understanding its operational traits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose ('Compare pricing across providers for a given model') and immediately follows with the return value. There is no wasted wording, repetition, or unnecessary elaboration, making it highly concise and well-structured for quick understanding.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (2 parameters, no output schema, no annotations), the description is partially complete. It clearly states the purpose and output format, but lacks behavioral details (e.g., safety, limits) and usage guidelines. Without an output schema, it does explain the return structure, which helps, but overall it falls short of being fully comprehensive for an agent to use the tool confidently in all contexts.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, meaning the input schema fully documents both parameters (model and max_results). The description does not add any parameter-specific details beyond what the schema provides (e.g., it doesn't explain the semantics of 'model' or 'max_results' further). According to the rules, with high schema coverage, the baseline score is 3, as the description doesn't compensate but also doesn't need to given the schema's completeness.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('compare pricing') and resource ('across providers for a given model'), and distinguishes it from siblings by focusing on price comparison rather than savings analysis, spending tracking, recommendations, or alerts. It explicitly mentions what the tool returns ('offerings sorted by price with quality and reliability data'), making the purpose distinct and well-defined.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus its siblings (e.g., volt_get_savings, volt_recommend_route). It does not mention any prerequisites, exclusions, or alternative tools, leaving the agent to infer usage based on purpose alone. While the purpose is clear, the lack of explicit context or comparisons reduces its helpfulness for tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
volt_get_savingsB
Compare actual spend against optimal routing. Shows savings achieved and savings missed.
| Name | Required | Description | Default |
|---|---|---|---|
| time_range | No | Time range for the report: today, 7d (7 days), or 30d (30 days) | 7d |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool 'shows' savings, implying a read-only operation, but doesn't clarify if it requires specific permissions, has rate limits, or what the output format looks like (e.g., detailed report vs summary). For a tool with no annotations, this is a significant gap, as it lacks details on behavioral traits like data freshness or computational cost.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise and front-loaded: two sentences that directly state the tool's purpose and output. There is zero waste—every word contributes to understanding what the tool does. This efficient structure makes it easy for an AI agent to parse and use, earning a top score of 5.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (moderate, involving comparison and savings analysis), no annotations, no output schema, and 100% schema coverage, the description is minimally adequate. It explains the core function but lacks details on output format, error handling, or integration with siblings. Without annotations or output schema, more context on behavioral aspects would improve completeness, but it meets the basic threshold for a score of 3.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds no parameter semantics beyond what the input schema provides. The schema has 100% description coverage, clearly documenting the single parameter 'time_range' with its enum values and default. Since the description doesn't elaborate on parameter usage (e.g., how time_range affects the comparison), the baseline score of 3 is appropriate, as the schema adequately handles parameter documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Compare actual spend against optimal routing' specifies the verb (compare) and resources (actual spend vs optimal routing). It distinguishes from siblings like 'volt_get_spend' (which likely shows raw spend) and 'volt_recommend_route' (which likely suggests routes). However, it doesn't explicitly differentiate from all siblings, such as 'volt_check_price' or 'volt_set_budget_alert', keeping it at a 4 rather than a 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It mentions 'Shows savings achieved and savings missed' but doesn't specify contexts, prerequisites, or exclusions. For example, it doesn't indicate if this is for post-analysis or real-time monitoring, or when to choose it over 'volt_get_spend' or 'volt_recommend_route'. This lack of explicit when/when-not/alternatives results in a score of 2.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
volt_get_spendC
Get spending summary by provider and model for today, 7 days, or 30 days.
| Name | Required | Description | Default |
|---|---|---|---|
| time_range | No | Time range for the summary: today, 7d (7 days), or 30d (30 days) | today |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool retrieves a spending summary, implying a read-only operation, but doesn't address critical aspects like authentication requirements, rate limits, error handling, or the format of the returned summary. For a tool with zero annotation coverage, this is a significant gap in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that clearly conveys the core functionality without any wasted words. It is front-loaded with the main action and scope, making it easy to parse quickly. Every part of the sentence earns its place by specifying key details like the summary breakdown and time ranges.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (a read operation with one parameter) and the lack of annotations and output schema, the description is incomplete. It doesn't explain what the spending summary includes (e.g., cost breakdowns, units), how results are structured, or any limitations (e.g., data latency, access controls). Without an output schema, the description should provide more context on return values, but it fails to do so.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description mentions the time range options ('today, 7 days, or 30 days'), which aligns with the input schema's parameter 'time_range' and its enum values. Since schema description coverage is 100%, the schema already fully documents the parameter, so the description adds minimal value beyond restating the enum options. This meets the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Get spending summary by provider and model for today, 7 days, or 30 days.' It specifies the verb ('Get'), resource ('spending summary'), and scope ('by provider and model'), making the purpose understandable. However, it doesn't explicitly differentiate from sibling tools like 'volt_get_savings' or 'volt_check_price', which might also involve spending data.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It mentions the time ranges but doesn't explain why one would choose this tool over siblings such as 'volt_get_savings' or 'volt_recommend_route', nor does it specify any prerequisites or exclusions. This lack of contextual guidance leaves the agent to infer usage scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
volt_recommend_routeB
Get the optimal provider recommendation for a model based on cost, latency, reliability, or balanced optimization. Shows savings vs your current cost.
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | Model name or partial match to filter offerings (e.g. "llama-70b", "gpt-4o") | |
| optimize | No | What to optimize for (default: balanced) | balanced |
| current_cost_per_million | No | What you currently pay per million tokens (avg of input+output), for savings estimate | |
| min_quality | No | Minimum acceptable quality score 0-1 (default: 0.7) | |
| max_latency_ms | No | Maximum acceptable P95 latency in ms (default: 5000) | |
| blocked_providers | No | Provider IDs to exclude from recommendations |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions the tool 'Shows savings vs your current cost,' which implies a read-only comparison function, but lacks details on permissions, rate limits, data freshness, or what happens if no recommendations match criteria. This is inadequate for a recommendation tool with multiple parameters.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded, stating the core purpose in the first sentence and adding a secondary benefit in the second. Both sentences earn their place by clarifying the tool's function and output, with no wasted words or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (6 parameters, no annotations, no output schema), the description is moderately complete. It covers the primary function and output type but lacks details on behavioral traits, error handling, and result format. Without annotations or output schema, more context on what the recommendation includes would be beneficial for an agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description adds minimal value beyond the schema by hinting at optimization criteria and savings estimation, but does not provide additional syntax, format details, or usage examples for parameters. Baseline 3 is appropriate given high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with specific verbs ('Get the optimal provider recommendation') and resources ('for a model'), specifying optimization criteria ('based on cost, latency, reliability, or balanced optimization'). It distinguishes from sibling tools like 'volt_check_price' by focusing on recommendations rather than price checks or savings calculations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'volt_check_price' or 'volt_get_savings'. It mentions the tool's function but does not specify scenarios, prerequisites, or exclusions for usage, leaving the agent to infer context from the tool name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
volt_set_budget_alertC
Set a budget threshold for daily, weekly, or monthly spend. Alerts when exceeded.
| Name | Required | Description | Default |
|---|---|---|---|
| threshold | Yes | Budget threshold in USD (e.g. 10.00 for $10) | |
| period | Yes | Budget period: daily, weekly, or monthly |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions setting a threshold and alerts, but doesn't cover critical aspects like whether this is a one-time setup or recurring, what permissions are required, how alerts are delivered, or if changes are reversible. This is inadequate for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise with two short sentences that are front-loaded and waste no words. Every part contributes directly to understanding the tool's function.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a mutation tool with no annotations and no output schema, the description is incomplete. It lacks details on behavioral traits, error conditions, response format, and how it integrates with sibling tools. The high schema coverage helps, but doesn't compensate for the missing operational context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters thoroughly. The description adds minimal value by implying the parameters are used together for budget alerts, but doesn't provide additional context beyond what's in the schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('Set') and resource ('budget threshold'), and specifies the alert functionality. However, it doesn't differentiate from sibling tools like 'volt_get_spend' or 'volt_check_price', which might be related to monitoring spending.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. The description mentions alerts when exceeded, but doesn't specify prerequisites, exclusions, or how it relates to sibling tools for checking spend or savings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
5 tool updates
v0.1.0- First observed
volt_check_price - First observed
volt_get_savings - First observed
volt_get_spend - First observed
volt_recommend_route - First observed
volt_set_budget_alert
TDQS
Each tool has a clearly distinct purpose with no overlap: price checking, savings analysis, spending retrieval, routing recommendations, and budget alerts. The descriptions specify unique functions, making misselection unlikely.
All tool names follow a consistent 'volt_verb_noun' pattern (e.g., volt_check_price, volt_get_savings). This predictable structure enhances readability and usability for agents.
With 5 tools, the server is well-scoped for cost optimization and monitoring in AI model routing. Each tool serves a specific, necessary function without bloat or redundancy.
The toolset covers core cost management workflows: monitoring (spend, savings), optimization (price comparison, routing), and alerts (budget). A minor gap exists in direct cost control actions (e.g., adjusting routes or budgets), but agents can work around this with recommendations and alerts.
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
AI inference pricing for agents: live and historical model prices, provider comparison.
Verified cloud cost forecasting for AI agents. AWS, GCP, Azure pricing matrix.
Verified cloud cost forecasting for AI agents. AWS, GCP, Azure pricing matrix.
Live LLM API pricing: token prices, comparisons, cheapest-model lookups. No key required.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/newageflyfish-max/volthq'
If you have feedback or need assistance with the MCP directory API, please join our Discord server