Skip to main content
Glama

check_dependency_health

Check real-time health and latency of AI providers and Web3 RPCs to avoid costly workflow failures. Get health status and failover routes before launching swarm workflows.

Instructions

[Cost: $0.0003 USDC on Base & Solana] Check real-time health, latency, and operational status of upstream AI model providers (OpenAI, Anthropic, Gemini, DeepSeek, Groq) and Web3 RPCs (Base, Solana) before launching costly swarm workflows. Returns health status ('HEALTHY', 'DEGRADED', 'DOWN') and failover routes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
categoryNo
providersNo
force_freshNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.3.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations provided, the description carries the burden of behavioral disclosure. It usefully adds the cost, the returned status values ('HEALTHY', 'DEGRADED', 'DOWN'), and failover routes, but it does not explain caching semantics (despite the force_fresh parameter), failure behavior, or side effects.

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 compact paragraph that front-loads cost, then states purpose, scope, and return values. Every clause adds useful information and there is no filler.

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 output schema covers return structure, but with no annotations and no parameter documentation, the description alone is not fully complete. It gives context for tool selection but leaves parameter usage and default/caching behavior unexplained.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate for all three parameters. It mentions provider names in the prose but never explains how category, providers, or force_fresh should be populated, what values are valid, or how they interact.

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 names a specific action ('Check real-time health, latency, and operational status'), a clear resource ('upstream AI model providers... and Web3 RPCs'), and lists concrete target providers such as OpenAI, Anthropic, and Base. This makes it easy to distinguish from sibling tools, including probe_upstream_endpoint, because it clearly scopes the check to dependency health for AI and RPC services.

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 phrase 'before launching costly swarm workflows' clearly states when the tool should be used. However, it does not mention when not to use it or name alternatives such as probe_upstream_endpoint, so it stops short of explicit exclusion guidance.

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