static_image_url
ActiveTool of Mapbox MCP Server
"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 + coords + zoom + width/height; returns a fetchable PNG URL. No client-side JS or interactivity required.
Parameters schema
{
"type": "object",
"examples": [
{
"lat": 37.7749,
"lon": -122.4194,
"zoom": 12,
"width": 600,
"height": 400,
"style_id": "light-v10"
},
{
"lat": 40.7128,
"lon": -74.006,
"zoom": 14,
"pitch": 60,
"width": 800,
"height": 600,
"retina": true,
"bearing": 45,
"style_id": "dark-v10"
}
],
"required": [
"style_id",
"lon",
"lat",
"zoom",
"width",
"height"
],
"properties": {
"lat": {
"type": "number"
},
"lon": {
"type": "number"
},
"zoom": {
"type": "number"
},
"pitch": {
"type": "number"
},
"width": {
"type": "number"
},
"height": {
"type": "number"
},
"retina": {
"type": "boolean"
},
"bearing": {
"type": "number"
},
"style_id": {
"type": "string"
}
}
}Parent server
Mapbox MCP Server
https://github.com/pipeworx-io/mcp-mapbox
2/7 registries