Mapbox MCP

Developmentstdiohttp-streaming
Repository

Mapbox's official Model Context Protocol server, giving AI agents access to Mapbox's geospatial APIs. Supports forward and reverse geocoding, routing and directions, isochrone and matrix travel-time computation, and static map image generation, so assistants can answer location questions and build map-driven workflows from natural language.

Bağlan

Bu yapılandırmayı şuraya ekleyin: .claude/mcp.json

Taşıma:
{
  "mcpServers": {
    "mapbox": {
      "command": "npx",
      "args": [],
      "env": {
        "MAPBOX_ACCESS_TOKEN": "<YOUR_MAPBOX_ACCESS_TOKEN>"
      }
    }
  }
}

Araçlar (2)

geocode

Convert an address or place name into geographic coordinates (or reverse).

{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Address, place name, or \"lat,lng\" for reverse geocoding"
    }
  }
}

directions

Compute a route between two or more coordinates for a given travel profile.

{
  "type": "object",
  "required": [
    "coordinates"
  ],
  "properties": {
    "profile": {
      "type": "string",
      "description": "Travel profile (driving, walking, cycling)"
    },
    "coordinates": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Ordered list of \"lng,lat\" waypoints"
    }
  }
}

Kaynaklar

Bu sunucu herhangi bir kaynak sunmuyor.

Prompt'lar

Bu sunucu herhangi bir prompt sunmuyor.

Sunucu bilgileri

Yazar
Mapbox (@mapbox)
Repository
https://github.com/mapbox/mcp-server
Lisans
BSD-3-Clause
Yıldızlar
0
Son güncelleme
25 Temmuz 2026