mapillary_detections

Pack: mapillary · Endpoint: https://gateway.pipeworx.io/mapillary/mcp

Detected objects/signs in an image. Returns Mapillary computer-vision detections (object/sign classes like “object—support—pole” or “regulatory—stop—g1”) found inside a given image id. Example: mapillary_detections({ image_id: “498763468214164”, _apiKey: “MLY|…” })

Parameters

NameTypeRequiredDescription
image_idstringyesMapillary image id (numeric string), e.g. “498763468214164”
_apiKeystringyesMapillary access token (looks like “MLY|…”)

Example call

Arguments

{
  "image_id": "498763468214164",
  "_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_detections","arguments":{"image_id":"498763468214164","_apiKey":"your-mapillary-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('mapillary_detections', {
  "image_id": "498763468214164",
  "_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