Skip to content
BEAD

Coordinates Converter & Distance

Convert lat/lon between decimal degrees and DMS, or compute the great-circle distance between two points.

Decimal37.774900, -122.419400
DMS37°46'29.64" N, 122°25'09.84" W
Decimal40.712800, -74.006000
DMS40°42'46.08" N, 74°00'21.60" W
Great-circle distance from A to B
4,129.09 km2,565.69 mi2,229.53 nm
Initial bearing: 69.9° (ENE)
</>Use this tool programmaticallycurl · JavaScript · MCP

Same tool, callable from any HTTP client or from Claude (via MCP). Anonymous: 100 req/day per IP. Sign up for 1,000 req/day.

curl
curl https://api.b-e-a-d.com/tools/coordinates-tool/run \
  -H "Content-Type: application/json" \
  -d '{
  "a": "a"
}'
JavaScript (fetch)
const res = await fetch("https://api.b-e-a-d.com/tools/coordinates-tool/run", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
  "a": "a"
}),
});
const data = await res.json();
console.log(data.result);
MCP (Claude Desktop / Claude Code)
# In Claude Desktop / Claude Code, add to your MCP config:
{
  "mcpServers": {
    "bead": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.b-e-a-d.com"]
    }
  }
}

# Then ask Claude to call:
mcp__bead__bead_coordinates_tool

Full reference: developer docs · OpenAPI spec

About this tool

Accepts decimal degrees (37.7749, -122.4194), degrees-minutes-seconds (37°46'30"N), or a paste of either format. Outputs both representations side by side.

Distance is the great-circle (Haversine) distance on a sphere with WGS-84 mean radius of 6,371 km — accurate to within a few tenths of a percent for any two points on Earth.

You might also like