x402-dms-to-decimal
Dms To Decimal: Convert dms to decimal.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| degrees | No | Degrees to process | |
| minutes | No | Minutes to process | |
| seconds | No | Seconds to process |
Dms To Decimal: Convert dms to decimal.
| Name | Required | Description | Default |
|---|---|---|---|
| degrees | No | Degrees to process | |
| minutes | No | Minutes to process | |
| seconds | No | Seconds to process |
Changes observed during successful MCP inspections.
Input schema / properties / degreesAdded value: +{
+ "description": "Degrees to process",
+ "type": "string"
+}Input schema / properties / minutesAdded value: +{
+ "description": "Minutes to process",
+ "type": "string"
+}Input schema / properties / secondsAdded value: +{
+ "description": "Seconds to process",
+ "type": "string"
+}Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full behavioral burden. It says nothing about return format, how empty/optional inputs are handled (all parameters are optional per required=0), or that the result is a numeric decimal value. For a conversion tool with no annotations, this is a significant gap.
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?
A single efficient sentence with zero waste, front-loading the verb and direction. However, it is arguably too terse to carry useful meaning beyond the tool name.
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?
No annotations, no output schema, and all parameters optional. The description does not explain the expected output, the behavior with missing inputs, or the format of the decimal result. For a conversion tool with this much unstructured context, it is incomplete.
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 100% ('Degrees to process', etc.), so the schema already documents all three parameters. The description adds no syntax or format details (e.g., whether decimal minutes are allowed, sign conventions for negative longitudes). Baseline 3 when the schema does the heavy lifting.
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: 'Convert dms to decimal.' The tool name and description both make the DMS-to-decimal conversion clear, and a sibling tool 'decimal-to-dms' exists as the reciprocal, so the direction is unambiguous. It does not explicitly name the sibling, but the purpose is specific enough.
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?
Usage is implied by the conversion direction (geographic/angular coordinate conversion). There is no explicit statement of when to use this versus alternatives, though the reciprocal sibling makes the intent reasonably clear.
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.