check_provider_status
Check operational status and recent latency for one or all LLM providers.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| provider | No | Specific provider slug (e.g. openai-gpt4o). Omit for all. |
Check operational status and recent latency for one or all LLM providers.
| Name | Required | Description | Default |
|---|---|---|---|
| provider | No | Specific provider slug (e.g. openai-gpt4o). Omit for all. |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It discloses that the tool checks operational status and recent latency, indicating a read-only behavior. However, it does not mention any rate limits, auth requirements, or error handling, which are minor gaps for a simple status check.
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, front-loaded sentence of 12 words. Every word provides value; no filler. Perfectly concise.
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?
The description covers the tool's purpose and returns (status and latency). Since there is no output schema, the description provides adequate context for a simple check tool. Minor gap: no detail on output format (single object vs array) but acceptable.
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 coverage is 100% with one parameter described. The tool description does not add meaning beyond the schema's parameter description ('Omit for all'). Baseline of 3 is appropriate as schema already documents parameter meaning.
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 verb 'check' and the resource 'LLM providers', specifying it returns operational status and recent latency. This distinguishes it from sibling tools like list_providers (lists names) and recommend_llm (recommends).
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 implies when to use (checking status) but does not explicitly exclude cases or compare with siblings. For example, it doesn't state when to use list_providers vs this tool. No when-not-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool has a distinct, non-overlapping purpose: checking operational status, listing providers with detailed info, and recommending based on task. No ambiguity.
All tool names follow a consistent verb_noun pattern with clear verbs (check, list, recommend) and nouns (provider_status, providers, llm).
Three tools is well-scoped for the server's purpose—covering status check, listing, and recommendation without being too few or excessive.
The tool surface covers the core workflows (status, info, recommendation). A minor gap is direct provider comparison, but list_providers with filtering and recommend_llm adequately address it.