Decimal To Dms
decimal_to_dmsConvert decimal lat/lon to degrees-minutes-seconds strings.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| lat | Yes | Latitude (decimal degrees). | |
| lon | Yes | Longitude (decimal degrees). |
decimal_to_dmsConvert decimal lat/lon to degrees-minutes-seconds strings.
| Name | Required | Description | Default |
|---|---|---|---|
| lat | Yes | Latitude (decimal degrees). | |
| lon | Yes | Longitude (decimal degrees). |
Changes observed during successful MCP inspections.
Input schema / examplesAdded value: +[
+ {
+ "lat": 40.7128,
+ "lon": -74.006
+ },
+ {
+ "lat": 51.5074,
+ "lon": -0.1278
+ }
+]Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate the tool is read-only, idempotent, and non-destructive. The description adds no additional behavioral context such as output precision, error handling, or side effects. It is adequate but does not exceed what annotations provide.
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 a single concise sentence that directly conveys the tool's purpose. It is front-loaded and contains no extraneous words, efficiently communicating the core functionality.
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?
Given the lack of an output schema, the description does not specify the return format (e.g., string, object) or precision. However, for a simple conversion tool, the missing details are minor and the description is mostly adequate.
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 input schema provides full descriptions for both parameters (lat and lon), so the description adds no further meaning. With 100% schema coverage, baseline is 3; the description merely restates what the schema already conveys.
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 action ('convert'), the input resource ('decimal lat/lon'), and the output format ('degrees-minutes-seconds strings'). It effectively distinguishes from its sibling tool 'dms_to_decimal' by implication.
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 lacks explicit guidance on when to use this tool versus alternatives. While the naming convention and existence of 'dms_to_decimal' suggest the use case, no direct when-to-use or when-not-to-use instructions are provided.
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.