Skip to main content
Glama

Server Details

Live LLM API price + status radar across 11 providers, with public per-model price HISTORY.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 3.9/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct aspect: cheapest model search, price change alerts, price history, and provider status. No overlap in purpose.

Naming Consistency5/5

All tool names use lowercase with underscores and follow a predictable noun_noun or adjective_noun pattern. Naming is clear and consistent.

Tool Count5/5

With 4 tools, the server is well-scoped for its purpose of monitoring AI API prices and status. Each tool is justified.

Completeness3/5

While core functionalities are covered, the server lacks a tool to list available providers or models, which is a notable gap for initial discovery.

Available Tools

4 tools
cheapest_modelAInspect

Return the cheapest LLM API models that meet a constraint, ranked by blended $/M-token cost. Use this to route an agent to the lowest-cost model with enough context that is currently operational. Filter by minimum context window and provider; weight input vs output cost for your workload.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoHow many to return (default 10).
providerNoRestrict to one provider slug (openai, anthropic, google, ...).
in_weightNoRelative weight of input-token price (default 1).
out_weightNoRelative weight of output-token price (default 3, output-heavy).
min_contextNoMinimum context window (tokens), e.g. 128000.
operational_onlyNoDrop providers with a major/critical status indicator.
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden. It mentions ranking by cost and filtering by operational status, but does not disclose whether the tool makes live API calls, rate limits, or the exact meaning of 'operational'. The return format is not described.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences: first states purpose, second provides usage and parameter hints. Every sentence is useful and there is no fluff. Front-loaded with key information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the absence of an output schema, the description should hint at return format. It does not explicitly state what fields are returned (e.g., model name, cost, provider). Somewhat complete but lacks details on output structure.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, baseline 3. The description adds value by explaining the purpose of min_context, provider, in_weight, and out_weight (e.g., 'weight input vs output cost'). This goes beyond the schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Return the cheapest LLM API models' with specific details on ranking by blended $/M-token cost. It distinguishes from sibling tools (price_change_alerts, price_history, status) by focusing on cost minimization.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit guidance: 'Use this to route an agent to the lowest-cost model with enough context that is currently operational.' It also explains how to filter and weight costs, but does not explicitly state when not to use it or mention alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

price_change_alertsAInspect

Subscribe a webhook to fire when a provider changes prices (or read recent price changes). Pass webhook to subscribe (optionally filter by provider and direction 'cut'|'raise'); omit to read recent changes.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
webhookNoHTTPS URL to POST price-change events to. Omit to just read recent changes.
providerNo
directionNo
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must fully disclose behavior. It explains the two operational modes and filtering, but omits details like error handling, rate limits, or authentication requirements for webhook subscriptions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, concise sentence that efficiently conveys the tool's purpose and usage. No unnecessary words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description is adequate for basic understanding but lacks details on return format for reading changes, error handling, and parameter constraints. No output schema exists to fill gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description explains the webhook and direction parameters beyond the schema, but does not explain limit or provider. Schema coverage is low (25%), so the description only partially compensates.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states that the tool subscribes a webhook to price changes or reads recent changes, using specific verbs and resources. It distinguishes itself from siblings like cheapest_model and price_history by focusing on alerts.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides clear guidance on when to use each mode: pass webhook to subscribe, omit to read. It also mentions optional filters. However, it does not explicitly exclude alternatives or contrast with sibling tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

price_historyAInspect

Return the dated $/M-token price history (input + output) for one model. This is AI API Radar's exclusive time-series — useful for spotting price-war cuts and trend.

ParametersJSON Schema
NameRequiredDescriptionDefault
modelYesModel slug, e.g. 'anthropic--claude-opus-4-x' or just the id.
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must fully disclose behavioral traits. It only mentions the tool is read-only by nature (returning data) but lacks details on error cases, rate limits, or any side effects. The agent cannot infer safety or constraints beyond the basic operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise with two sentences, front-loading the core action and adding a use-case hint. Every sentence adds value without unnecessary fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 1 parameter, no output schema, and no annotations, the description covers the basics but lacks details on return format, pagination, or ordering. It mentions input+output prices but does not specify data types or structure, leaving gaps for an agent to determine how to use the response.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% (the model parameter has a description with an example). The description adds minimal value beyond the schema, simply reiterating the parameter's purpose. Baseline 3 is appropriate as the schema already carries the load.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Return' and the resource 'dated $/M-token price history (input + output) for one model.' It also mentions its unique aspect as 'AI API Radar's exclusive time-series,' which differentiates it from sibling tools like cheapest_model or price_change_alerts.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for 'spotting price-war cuts and trend,' providing some context on when to use. However, it does not explicitly state when not to use or specify alternatives, leaving the agent to infer from sibling names.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

statusAInspect

Current operational status for one or all AI API providers (from each provider's public status page).

ParametersJSON Schema
NameRequiredDescriptionDefault
providerNoProvider slug; omit for all providers.
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries burden. It discloses that data comes from public status pages, implying a read-only, non-destructive operation. Could mention lack of authentication or potential delays, but still adequate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence containing all essential information without any filler or redundancy; highly concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple tool with one optional parameter and no output schema, the description covers purpose, scope, and data source. It does not explain return format, but that is often inferable for a status endpoint.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with clear parameter description. Tool description adds context (data source) but does not enhance parameter meaning beyond the schema, so baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool returns 'current operational status' for AI API providers, which is a specific verb and resource. It distinguishes from sibling tools (cheapest_model, price_change_alerts, price_history) that focus on pricing.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for checking status as opposed to pricing tools, but does not explicitly state when to use or not use this tool, nor mention any prerequisites or alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources