kartaview_sequence_photos
Pack: kartaview · Endpoint: https://gateway.pipeworx.io/kartaview/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/kartaview_sequence_photos for the schema, then POST the same URL with its arguments for the data.
Every frame of one KartaView drive in capture order — position, compass heading, capture timestamp, GPS accuracy, the OpenStreetMap way each frame was matched to, and full-size and thumbnail JPEG URLs. Use after kartaview_nearby_sequences to follow a street rather than stand at one point. Keyless, CC BY-SA. Example: kartaview_sequence_photos({ sequence_id: “7523977”, limit: 50 }).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
sequence_id | string | yes | Numeric KartaView sequence (drive) id, e.g. “7523977”. |
limit | number | no | Max photos to return, 1-500. Default 50. |
offset | number | no | Skip this many frames from the start of the drive. Default 0. |
Example call
Arguments
{
"sequence_id": "7523977",
"limit": 2
}
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_sequence_photos","arguments":{"sequence_id":"7523977","limit":2}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('kartaview_sequence_photos', {
"sequence_id": "7523977",
"limit": 2
});
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.