Mapbox
live TravelGeographyMapbox — 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_forward Address → coords.
No parameters required.
Try it
geocode_reverse Coords → address.
No parameters required.
Try it
directions Routing.
No parameters required.
Try it
directions_matrix Distance/time matrix.
No parameters required.
Try it
isochrone Isochrones.
No parameters required.
Try it
map_matching Snap GPS trace to roads.
No parameters required.
Try it
tilequery Tile feature query.
No parameters required.
Try it
static_image_url Static 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");