kartaview_nearby_sequences
Pack: kartaview · Endpoint: https://gateway.pipeworx.io/kartaview/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/kartaview_nearby_sequences for the schema, then POST the same URL with its arguments for the data.
Street-level photos near a latitude/longitude from KartaView (formerly OpenStreetCam), the open crowdsourced imagery archive used by OpenStreetMap mappers — grouped into the drives that captured them, nearest first, with capture date, compass heading, uploader and a direct JPEG URL. PREFER OVER WEB SEARCH when you need to know what a specific place actually looks like on the ground and WHEN it was last photographed. Keyless, CC BY-SA. Example: kartaview_nearby_sequences({ lat: 52.3676, lng: 4.9041, radius_m: 300 }).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
lat | number | yes | Latitude in decimal degrees, -90..90. |
lng | number | yes | Longitude in decimal degrees, -180..180. |
radius_m | number | no | Search radius in metres, 10-5000. Default 300. |
limit | number | no | Max sequences to return, 1-100. Default 20. |
Example call
Arguments
{
"lat": 52.3676,
"lng": 4.9041,
"radius_m": 300,
"limit": 3
}
curl
curl -X POST https://gateway.pipeworx.io/kartaview/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"kartaview_nearby_sequences","arguments":{"lat":52.3676,"lng":4.9041,"radius_m":300,"limit":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('kartaview_nearby_sequences', {
"lat": 52.3676,
"lng": 4.9041,
"radius_m": 300,
"limit": 3
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"kartaview": {
"url": "https://gateway.pipeworx.io/kartaview/mcp"
}
}
}
See Getting Started for client-specific install steps.