datalastic_vessels_in_radius

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

Find vessels within nm of a lat/lon — live AIS positions of all ships near a point. Returns each ship’s name, IMO, MMSI, position, speed, course, destination and type. Example: datalastic_vessels_in_radius({ lat: 51.95, lon: 1.28, radius: 20, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
latnumberyesCenter latitude in decimal degrees, e.g. 51.95
lonnumberyesCenter longitude in decimal degrees, e.g. 1.28
radiusnumberyesSearch radius in nautical miles, e.g. 20
_apiKeystringyesDatalastic API key (get one with a trial at datalastic.com)

Example call

Arguments

{
  "lat": 51.95,
  "lon": 1.28,
  "radius": 20,
  "_apiKey": "your-datalastic-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/datalastic/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"datalastic_vessels_in_radius","arguments":{"lat":51.95,"lon":1.28,"radius":20,"_apiKey":"your-datalastic-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('datalastic_vessels_in_radius', {
  "lat": 51.95,
  "lon": 1.28,
  "radius": 20,
  "_apiKey": "your-datalastic-api-key"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "datalastic": {
      "url": "https://gateway.pipeworx.io/datalastic/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026