Skip to main content
Glama

Dms To Decimal

dms_to_decimal
Read-onlyIdempotent

Parse a degrees-minutes-seconds coordinate string to decimal degrees. Accepts forms like "40°26′46″N" or "40 26 46 N" or "-73.5". Returns the decimal value.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dmsYesA DMS coordinate string, e.g. "40°26′46″N".

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "dms": "40°26′46″N"
      +  },
      +  {
      +    "dms": "73°58′56″W"
      +  }
      +]
  2. First observed

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, so the description's addition of accepted input formats and the return of decimal values provides useful context beyond the annotations.

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?

Two clear sentences, no redundancy, and front-loaded with the core purpose. Every word earns its place.

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?

For a simple single-parameter tool without output schema, the description adequately covers input formats and output type (decimal degrees). Could add note on return type numeric, but not missing critical info.

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

Parameters4/5

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

Schema coverage is 100% with a description and example. The description adds value by specifying additional accepted forms like '-73.5', complementing the schema's example.

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 uses specific verb 'parse' and resource 'DMS coordinate string', clearly stating it converts to decimal degrees. It lists accepted forms, and the sibling decimal_to_dms provides the reverse operation, ensuring distinction.

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

Usage Guidelines4/5

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

The description implicitly indicates when to use by listing accepted formats, and the sibling decimal_to_dms exists for the reverse. However, no explicit when-not-to-use or alternative guidance beyond the tool's name.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.