Skip to main content
Glama

Datalastic Vessel

datalastic_vessel
Read-onlyIdempotent

Where is ship <imo/mmsi> — live AIS position + destination for a single vessel. Locate a ship by its IMO number, MMSI, or Datalastic UUID; returns current lat/lon, speed, course, heading, destination and navigation status. Example: datalastic_vessel({ imo: "9302947", _apiKey: "your-key" })

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
imoNoVessel IMO number, e.g. "9302947" (provide at least one of imo/mmsi/uuid)
mmsiNoVessel MMSI number, e.g. "477995900" (provide at least one of imo/mmsi/uuid)
uuidNoDatalastic vessel UUID (provide at least one of imo/mmsi/uuid)
_apiKeyYesDatalastic API key (get one with a trial at datalastic.com)

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed1 schema field changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "_apiKey": "your-datalastic-api-key",
      +    "imo": "9302947"
      +  },
      +  {
      +    "_apiKey": "your-datalastic-api-key",
      +    "mmsi": "477995900"
      +  }
      +]
  2. First observed

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds behavioral context by specifying that the position is 'live' and enumerating the navigation data provided (current lat/lon, speed, course, heading, destination, status), which goes beyond the schema without contradicting any annotation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded with the essential question ('Where is ship...'), followed by the return payload and a clear example. Every sentence earns its place, with zero fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple single-vessel lookup tool with no output schema, the description fully covers what it does, what identifiers are accepted, what data is returned, and how to invoke it via the example. It is complete for an agent to select and use correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the parameters are already well-documented. The description reinforces the alternative identifiers (IMO, MMSI, UUID) and provides an example usage, but it does not add substantive new meaning beyond indicating that at least one identifier is required—which the schema already states.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function with a specific verb ('Locate') and resource ('a single vessel'), and distinguishes it from the sibling `datalastic_vessels_in_radius` by emphasizing 'single vessel' and listing the specific AIS fields returned. It also provides a concrete example, making the purpose unmistakable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for querying a single vessel by IMO/MMSI/UUID and clearly specifies the data returned (live AIS position, destination, speed, etc.). However, it does not explicitly mention alternatives like `datalastic_vessels_in_radius` or state 'use this when you need one ship, not a set', so it stops short of full exclusion guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.