Mapbox MCP
Geocoding, POI search, routing, isochrones, and map rendering from Mapbox
Runs as a server Claude Code connects to. It needs its own configuration, and some servers need an API key.
Install just this one
Run in your terminal — needs Node
npx archtmpl@latest --mcp mapbox-mcpFirst time? The whole install, step by step
- Open Claude Code — the terminal version or the desktop app, either one.
- In a terminal, paste the line above and press Enter. In the app, paste it into the chat and ask Claude to run it.
- Restart Claude Code. That's the whole install.
The same JSON shown on this page works in the Claude desktop app without Claude Code. Add it to the app's config file, then restart the app:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
What this mcp server does
shell
1{ 2 "name": "Mapbox MCP", 3 "summary": "Geocoding, POI search, routing, isochrones, and map rendering from Mapbox", 4 "repo": "https://github.com/mapbox/mcp-server", 5 "mcpServers": { 6 "mapbox": { 7 "command": "npx", 8 "args": ["-y", "@mapbox/mcp-server"], 9 "env": {10 "MAPBOX_ACCESS_TOKEN": "YOUR_TOKEN"11 }12 }13 },14 "postInstallNotes": "Official Mapbox implementation. Needs an access token: free account at mapbox.com/signup, then replace YOUR_TOKEN. A hosted endpoint also exists at mcp.mapbox.com/mcp if you prefer not to run it locally."15}16