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

NameTypeRequiredDescription
sequence_idstringyesNumeric KartaView sequence (drive) id, e.g. “7523977”.
limitnumbernoMax photos to return, 1-500. Default 50.
offsetnumbernoSkip 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.

Regenerated from source · build September 18, 2026