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

NameTypeRequiredDescription
latnumberyesLatitude of the center point, in degrees (-90 to 90), e.g. 40.7580
lonnumberyesLongitude of the center point, in degrees (-180 to 180), e.g. -73.9855
radiusnumbernoSearch radius in meters around the point (default 50, max 50)
limitnumbernoMax number of images to return (default 10, max 25)
_apiKeystringyesMapillary access token (free — create an app token at mapillary.com/dashboard/developers). Looks like “MLY|…”.

Example call

Arguments

{
  "lat": 40.758,
  "lon": -73.9855,
  "radius": 30,
  "_apiKey": "your-mapillary-api-key"
}

curl

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":{"lat":40.758,"lon":-73.9855,"radius":30,"_apiKey":"your-mapillary-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('mapillary_images_near', {
  "lat": 40.758,
  "lon": -73.9855,
  "radius": 30,
  "_apiKey": "your-mapillary-api-key"
});

More examples

{
  "lat": 51.5074,
  "lon": -0.1278,
  "radius": 50,
  "limit": 15,
  "_apiKey": "your-mapillary-api-key"
}

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.

Regenerated from source · build August 18, 2026