health_check
Check if the discava API is online and responding. Returns status and version. No parameters required.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Check if the discava API is online and responding. Returns status and version. No parameters required.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With annotations already declaring readOnlyHint=true, idempotentHint=true, and destructiveHint=false, the description adds useful context about the return value (status and version) which is not covered by annotations or an output schema. It transparently describes the tool's behavior without contradicting annotations.
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 highly concise, consisting of three short sentences that each add value: purpose, return value, and parameter requirement. It is front-loaded with the primary action and contains no fluff.
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 simple no-parameter health check with no output schema, the description fully covers the essential information: what it does, what it returns, and that no parameters are needed. Annotations cover safety traits, making the tool contextually complete.
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 has zero parameters and the schema description coverage is 100%, so the baseline is 4. The description reiterates that no parameters are required, but adds no additional semantic meaning since there are no parameters to explain.
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 function: checking if the discava API is online and responding. The verb 'Check' and specific resource 'discava API' make the purpose unambiguous, and it is distinct from all sibling tools which focus on data retrieval or feedback.
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 does not explicitly state when to use this tool versus alternatives. It implies usage for verifying API health, but provides no context on when to invoke it (e.g., before other calls) or any exclusions. It is minimally acceptable but lacks explicit 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 clearly distinct purpose: get_business retrieves full details, get_rankings returns popularity rankings, search_businesses performs filtered searches, suggest provides autocomplete, list_categories and list_countries enumerate valid options, health_check checks API status, and send_feedback reports issues. No overlap or ambiguity.
Most tools follow a verb_noun pattern (get_business, get_rankings, list_categories, list_countries, search_businesses, send_feedback). However, 'health_check' is a noun phrase and 'suggest' is a lone verb without an object, introducing minor inconsistency.
With 8 tools covering search, details, rankings, autocomplete, enumeration, health check, and feedback, the count is well-matched to the directory's scope. Each tool earns its place without redundancy.
The tool set provides a complete workflow for discovering and retrieving business information: list available categories/countries, autocomplete input, search, get rankings, fetch full details, and report issues. No critical gaps are apparent for a read-only directory.