datalastic_vessels_in_radius
Pack: datalastic · Endpoint: https://gateway.pipeworx.io/datalastic/mcp
Find vessels within
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
lat | number | yes | Center latitude in decimal degrees, e.g. 51.95 |
lon | number | yes | Center longitude in decimal degrees, e.g. 1.28 |
radius | number | yes | Search radius in nautical miles, e.g. 20 |
_apiKey | string | yes | Datalastic 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.