reverse_geocode
The street address nearest to a coordinate (e.g. where a technician's last position is).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| lat | Yes | ||
| lng | Yes |
The street address nearest to a coordinate (e.g. where a technician's last position is).
| Name | Required | Description | Default |
|---|---|---|---|
| lat | Yes | ||
| lng | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and openWorldHint, so the safety and external-call profile is covered. The description adds no behavioral context beyond that: no mention of accuracy/precision limits on the returned address, rate limiting, or what happens for coordinates with no nearby address. With annotations carrying the load a 2 is fair.
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?
One tightly written sentence with the core behavior front-loaded and the parenthetical example adding value rather than padding. Nothing is wasted.
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 no-output-schema geocoding tool the description is minimally viable: it conveys input and output at a high level. It omits the return shape (street line only vs. full address components), edge-case behavior, and differentiation from geocode_address, leaving an agent to discover these by trial.
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 description coverage is 0% across two required numeric parameters, so the description must compensate and largely does not. 'A coordinate' loosely implies the lat/lng pair but specifies no ordering, valid ranges, or precision expectations, leaving both parameters effectively undocumented.
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 transformation clearly: coordinate in, nearest street address out. The reverse direction is unambiguous and implicitly contrasts with the sibling geocode_address. It stops short of naming that sibling or the tool's operational context, so it is clear but not fully differentiated.
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?
Offers one example use case (a technician's last position) which hints at when it is useful, but gives no explicit when-to-use, when-not-to-use, or alternative routing versus geocode_address, nearest_technicians, or zones_for_location. The agent must infer the selection conditions.
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.