bounding_box
Pack: coordinates · Endpoint: https://gateway.pipeworx.io/coordinates/mcp
Bounding box (SW/NE corners) around a center point at a given radius. unit = km (default) or mi.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
lat | number | yes | |
lon | number | yes | |
radius | number | yes | Radius from the center. |
unit | string | no | km (default) or mi. |
Example call
Arguments
{
"lat": 40.7128,
"lon": -74.006,
"radius": 10
}
curl
curl -X POST https://gateway.pipeworx.io/coordinates/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"bounding_box","arguments":{"lat":40.7128,"lon":-74.006,"radius":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('bounding_box', {
"lat": 40.7128,
"lon": -74.006,
"radius": 10
});
More examples
{
"lat": 51.5074,
"lon": -0.1278,
"radius": 5,
"unit": "mi"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"coordinates": {
"url": "https://gateway.pipeworx.io/coordinates/mcp"
}
}
}
See Getting Started for client-specific install steps.