Mapbox
liveTravelGeographyMapbox — forward/reverse geocoding, turn-by-turn routing, distance matrices, isochrones, and GPS trace snapping.
BYO access token only — a Mapbox token bills against the account that owns it, so Pipeworx does not front a shared one. Pass your token as _apiKey on the gateway URL.
{
"mcpServers": {
"pipeworx-mapbox": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://gateway.pipeworx.io/mapbox/mcp?_apiKey=your_mapbox_token"
]
}
}
}Tools
geocode_forwardAddress → coords.
No parameters required.
Try it
geocode_reverseCoords → address.
No parameters required.
Try it
directionsRouting.
No parameters required.
Try it
directions_matrixDistance/time matrix.
No parameters required.
Try it
isochroneIsochrones.
No parameters required.
Try it
map_matchingSnap GPS trace to roads.
No parameters required.
Try it
tilequeryTile feature query.
No parameters required.
Try it
static_image_urlStatic Image URL.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/mapbox/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/mapbox/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"geocode_forward","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("geocode_forward", {});// Or ask in plain English:
const answer = await px.ask("mapbox — forward/reverse geocoding, turn-by-turn routing, distance matrices, isochrones, and gps trace snapping");