mapillary_images_near
Pack: mapillary · Endpoint: https://gateway.pipeworx.io/mapillary/mcp
Street-level images near a lat/lon point. Returns image ids, coordinates, capture time, compass heading, and a 1024px thumbnail URL. Example: mapillary_images_near({ lat: 40.7580, lon: -73.9855, radius: 30, _apiKey: “MLY|…” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
lat | number | yes | Latitude of the center point, in degrees (-90 to 90), e.g. 40.7580 |
lon | number | yes | Longitude of the center point, in degrees (-180 to 180), e.g. -73.9855 |
radius | number | no | Search radius in meters around the point (default 50, max 50) |
limit | number | no | Max number of images to return (default 10, max 25) |
_apiKey | string | yes | Mapillary access token (free — create an app token at mapillary.com/dashboard/developers). Looks like “MLY|…”. |
Example call
curl -X POST https://gateway.pipeworx.io/mapillary/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"mapillary_images_near","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"mapillary": {
"url": "https://gateway.pipeworx.io/mapillary/mcp"
}
}
}
See Getting Started for client-specific install steps.