health_check
Check Agent Hub liveness (free). Call first before paid tools. Returns ok, service, version, billed:false. No payment required.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Check Agent Hub liveness (free). Call first before paid tools. Returns ok, service, version, billed:false. No payment required.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint and a closed (openWorldHint=false) surface, so safety is covered. The description adds genuinely new operational context — that the call is unbilled ('billed:false', 'No payment required') — which is exactly the trait an agent needs before deciding to probe the service.
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?
Four short clauses, front-loaded with the purpose and the ordering instruction, with zero filler or repetition.
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?
There is no output schema, so the description correctly compensates by naming the key return fields (ok, service, version, billed:false). For a trivial no-arg liveness probe, nothing an agent needs to invoke it correctly is missing.
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 tool takes zero parameters, so there is nothing for the description to disambiguate; the schema is fully empty and consistent. Baseline of 4 applies for a no-parameter tool.
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?
States a specific verb and resource ('Check Agent Hub liveness') rather than a tautology, and immediately distinguishes itself from the paid siblings by marking itself free with no payment required.
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?
Gives explicit sequencing guidance ('Call first before paid tools') that tells the agent when to reach for this versus the paid siblings. It implies but never names the specific alternatives (money_fact, pricing_list, scheme_lookup), so it stops short of a full when/when-not statement.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.