No install? Use cloud.anythingmcp.com directly.
Sign in, install the Mapbox in one click, paste the credentials, mint an MCP API key — done. No Docker, no git clone, no local server to run.
💡 ¿Sin instalación? Usa cloud.anythingmcp.com directamente. Inicia sesión, pulsa Connectors → Mapbox, pega tus credenciales, genera una MCP API key — listo. Sin Docker, sin
git clone, sin servidor local.
Mapbox
Drive Mapbox APIs (geocoding, directions, isochrones, matrix, tilequery) from any AI agent. 8 tools, access-token query auth.
Configuración
mapbox.com/api/).
Setup:
- Sign in to https://account.mapbox.com → Access tokens → Create a token.
- Pick scopes: usually
styles:read+fonts:read+geocoding+directions+matrix+isochrone+tilequery. - Copy the token (starts with
pk.). SetMAPBOX_ACCESS_TOKEN.
Authentication: query-string ?access_token=....
Coordinate convention (Mapbox-specific): longitude FIRST, then latitude. The order is lng,lat, NOT lat,lng like Google Maps. Trip up on this and your results land in the wrong country.
…(continued in the in-app connector instructions)
Requisitos previos: MAPBOX_ACCESS_TOKEN
Instalar el conector localmente
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
Abre http://localhost:3000/connectors/store, elige Mapbox e introduce las variables listadas en los Requisitos previos.
Herramientas disponibles
| Tool | What it does |
|---|---|
mapbox_geocode_forward | Forward geocoding (address text → coordinates) |
mapbox_geocode_reverse | Reverse geocoding (coordinates → address) |
mapbox_directions | Compute driving / walking / cycling directions between waypoints |
mapbox_isochrone | Get the area reachable within N minutes from a starting point (an 'isochrone' — like 'how far can I drive in 15 min?') |
mapbox_matrix | Compute travel-time and distance MATRIX between many origins and destinations (e |
mapbox_static_image | Generate a static PNG/JPG map of a location with optional pin overlays |
mapbox_tilequery | Query features in a vector tileset at a specific point — e |
mapbox_list_styles | List custom map styles owned by your account |