@pipeworx/mapbox
Connect: https://gateway.pipeworx.io/mapbox/mcp · Install: one-click buttons
Tools: 8
Mapbox MCP — geocoding, directions, matrix, isochrones, static maps URLs, tilequery. Free tier ~50k req/mo.
Auth
- Platform:
PLATFORM_MAPBOX_KEY. BYO:?_apiKey=…(Mapbox access token).
Tools
geocode_forward(query, country?, types?, proximity?, bbox?, autocomplete?, limit?, language?, fuzzyMatch?)— address → coordsgeocode_reverse(lon, lat, country?, types?, language?, limit?)— coords → addressdirections(coordinates, profile?, alternatives?, geometries?, overview?, steps?, annotations?, voice_instructions?, banner_instructions?, language?)— routingdirections_matrix(coordinates, profile?, sources?, destinations?, annotations?)— distance/time matrixisochrone(profile, coordinates, contours_minutes?, contours_meters?, contours_colors?, polygons?, denoise?, generalize?)— isochronesmap_matching(coordinates, profile?, geometries?, radiuses?, steps?, annotations?, overview?, timestamps?, tidy?)— snap GPS trace to roadstilequery(tileset_id, lon, lat, radius?, limit?, dedupe?, geometry?, layers?)— tile feature querystatic_image_url(style_id, lon, lat, zoom, width, height, bearing?, pitch?, retina?)— returns a Static Image API URL (image not fetched server-side)
profile: driving | walking | cycling | driving-traffic. coordinates: [[lon, lat], …].
Data source
https://api.mapbox.com
Tools
- geocode_forward — “What are the coordinates of [address]” / “geocode [place]” / “lat lng for [location]” / “find [city] on a map” — convert a street address, city, or place name to GPS coordinates (longitude / latitude
- geocode_reverse — “What’s at [lat,lng]” / “reverse geocode coordinates” / “what address is at these coords” / “what place is at this GPS point” — convert longitude / latitude into the nearest street address, neighborho
- directions — “Directions from A to B” / “how long does it take to drive from X to Y” / “how far is [A] from [B]” / “walking / cycling / driving directions” / “navigation between points” / “shortest route” — turn-b
- directions_matrix — “Distance matrix” / “drive times between multiple points” / “travel times grid” / “all-to-all distances” — N×M distance and duration matrix between many coordinates. Use for traveling-salesman, delive
- isochrone — “How far can I get in [N] minutes from [point]” / “reachable area in [time]” / “drive-time / walk-time / cycle-time polygons” / “delivery zone within [radius]” / “service area around [location]” — iso
- map_matching — “Snap GPS trace to roads” / “clean up noisy GPS coordinates” / “match track to road network” — takes a sequence of GPS points and returns the most likely path along the road network. Use for vehicle t
- tilequery — Query features inside a Mapbox vector tile around a coordinate — what POIs / roads / boundaries / buildings are within a radius of a point. Specialized GIS query against a specific tileset_id; most us
- static_image_url — “Static map image of [location]” / “embed a map of [coords]” / “screenshot a map” / “thumbnail map” — generates a Mapbox static-tile image URL for embedding in slack, docs, emails, or dashboards. Pass
Tools
-
directions— Directions from A to B / how long does it take to drive from X to Y / how far is [A] from [B] / walking / cycling / driving directions / navigation between points / shortest route — turn-by-turn routi -
directions_matrix— Distance matrix / drive times between multiple points / travel times grid / all-to-all distances — N×M distance and duration matrix between many coordinates. Use for traveling-salesman, delivery routi -
geocode_forward— What are the coordinates of [address] / geocode [place] / lat lng for [location] / find [city] on a map — convert a street address, city, or place name to GPS coordinates (longitude / latitude) using -
geocode_reverse— What's at [lat,lng] / reverse geocode coordinates / what address is at these coords / what place is at this GPS point — convert longitude / latitude into the nearest street address, neighborhood, city -
isochrone— How far can I get in [N] minutes from [point] / reachable area in [time] / drive-time / walk-time / cycle-time polygons / delivery zone within [radius] / service area around [location] — isochrone pol -
map_matching— Snap GPS trace to roads / clean up noisy GPS coordinates / match track to road network — takes a sequence of GPS points and returns the most likely path along the road network. Use for vehicle telemat -
static_image_url— Static map image of [location] / embed a map of [coords] / screenshot a map / thumbnail map — generates a Mapbox static-tile image URL for embedding in slack, docs, emails, or dashboards. Pass style + -
tilequery— Query features inside a Mapbox vector tile around a coordinate — what POIs / roads / boundaries / buildings are within a radius of a point. Specialized GIS query against a specific tileset_id; most us