ais_area_count
Pack: digitraffic-ais · Endpoint: https://gateway.pipeworx.io/digitraffic-ais/mcp
Count how many ships are in an area right now, broken down by ship-type category and by whether they are moving or stationary. Answers “how many vessels are in this area”, “how many tankers are in the Gulf of Finland”, “ship traffic count in a bounding box”, “how many vessels are anchored off Helsinki”. Give EITHER a circle (latitude, longitude, radius_km) OR a bounding box (min_lat, max_lat, min_lon, max_lon). Returns total, by_category counts (cargo, tanker, passenger, fishing, other), moving versus stationary using a 0.5-knot threshold, and the data timestamp. COVERAGE IS REGIONAL: Fintraffic AIS receivers over Finland and the surrounding Baltic Sea; an area elsewhere in the world counts zero. Example: min_lat 59.3, max_lat 60.5, min_lon 22.0, max_lon 28.0 for the Gulf of Finland; or latitude 60.15, longitude 24.95, radius_km 50 for Helsinki.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
latitude | number | no | Circle mode: centre latitude in decimal degrees. |
longitude | number | no | Circle mode: centre longitude in decimal degrees. |
radius_km | number | no | Circle mode: radius in kilometres. Default 25, maximum 100. |
min_lat | number | no | Bounding-box mode: southern latitude edge. |
max_lat | number | no | Bounding-box mode: northern latitude edge. |
min_lon | number | no | Bounding-box mode: western longitude edge. |
max_lon | number | no | Bounding-box mode: eastern longitude edge. |
vessel_type | string | no | Optional ship-type filter applied before counting. One of: cargo, tanker, passenger, fishing, tug, pilot, sar, military, sailing, pleasure, high-speed, service, other. |
Example call
curl -X POST https://gateway.pipeworx.io/digitraffic-ais/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ais_area_count","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"digitraffic-ais": {
"url": "https://gateway.pipeworx.io/digitraffic-ais/mcp"
}
}
}
See Getting Started for client-specific install steps.