dms_to_decimal
Pack: geodistance · Endpoint: https://gateway.pipeworx.io/geodistance/mcp
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.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
dms | string | yes | A DMS coordinate string, e.g. “40°26′46″N”. |
Example call
curl -X POST https://gateway.pipeworx.io/geodistance/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dms_to_decimal","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"geodistance": {
"url": "https://gateway.pipeworx.io/geodistance/mcp"
}
}
}
See Getting Started for client-specific install steps.