Skip to main content
Glama

coord_describe

Read-onlyIdempotent

Check if a coordinate string is valid, identify its notation, normalize it, and reveal the ground accuracy implied by its precision.

Instructions

Check whether a string is a valid coordinate and report its precision.

Identifies which notation it is, normalises it, and states the ground accuracy the notation implies -- a grid reference with four digits names a 1 km square, not a point, and a 5-character geohash is about 5 km wide. Returns is_valid=false with an explanation rather than failing, so it is safe to use for validating user input before acting on it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
valueYesThe coordinate string to inspect.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
metaYes
inputYes
problemNo
is_validYes
latitudeNo
longitudeNo
normalizedNo
detected_formatNo
implied_precision_mNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior, so the description doesn't need to repeat that. It adds value by explaining that the tool normalizes input and returns an explanation for invalid input, which is useful context beyond the safety hints. However, it doesn't describe the exact output structure or the precision levels returned, but given annotations cover safety, a 3 is reasonable.

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 well-structured, starting with the primary purpose, then explaining the normalization and precision implications, and ending with error behavior. Each sentence serves a purpose, and the use of a concrete example (4-digit grid reference, 5-char geohash) makes it informative without being verbose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With an output schema present, the description doesn't need to detail return values. It covers the tool's validation purpose, normalization behavior, and precision implications, which is sufficient for a single-parameter tool. A minor gap is not describing the exact output format, but that's covered by the output schema.

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

Parameters3/5

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

Schema coverage is 100% (the only parameter 'value' is described as 'The coordinate string to inspect.'). The description adds context about what the tool does with the value, but doesn't add new parameter-specific semantics beyond what the schema already provides. Hence baseline 3.

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 clearly states it checks if a string is a valid coordinate and reports its precision. It specifies the resource (coordinate strings) and the operation (validate, normalize, state precision), distinguishing it from sibling tools that convert, transform, or measure.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly mentions it is safe to use for validating user input before acting on it, and explains error behavior (returns is_valid=false rather than failing). This gives clear guidance on when to use it versus other tools, though it doesn't name alternatives explicitly, the context is clear enough.

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