Skip to main content
Glama
ariefrsee

Maritime Vessel Data MCP Server

vessels_watched

Retrieve vessels currently inside watched geographic regions, filtering out stale positions from deselected areas. Returns all vessels with a note when no regions are actively watched.

Instructions

Vessels inside the regions currently being watched, and nothing else.

The store keeps every vessel it has collected until the position ages out of the thirty minute window, which includes vessels from a region that has since been deselected. That is the right thing for the store to do and the wrong thing to show: someone who selects Malaysia means show me Malaysia, not Malaysia plus whatever was on screen ten minutes ago.

With no live subscription there is nothing being watched, so no filter applies and everything is returned with a note saying so.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum vessels to return, between 1 and 1000. The response always states how many were in the watched regions, so a truncated answer is visible rather than silent.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior5/5

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

With no annotations, the description carries the full behavioral burden, and it does so excellently. It discloses the 30-minute retention of stale vessels, the deliberate filtering to watched regions, and the no-subscription fallback that returns everything with a note, all of which an agent must know to interpret results correctly.

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

Conciseness4/5

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

The core behavior is front-loaded in the first sentence, and the later paragraphs explain important edge cases rather than restating the schema. Some editorial phrasing is a bit verbose, but the length is justified by the subtle behavioral context it communicates.

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?

Given the single optional parameter, a rich schema description, and an output schema, the definition covers the important edge cases: stale deselected-region vessels, no-subscription behavior, and truncation visibility. An agent has enough information to invoke and interpret the tool 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 coverage is 100%, and the limit parameter already has a thorough description including default, maximum, and truncation visibility. The tool description adds no additional parameter-level meaning, so the baseline of 3 is appropriate.

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 opening line, 'Vessels inside the regions currently being watched, and nothing else,' states a specific resource and scope with a clear contrast to broader vessel queries. It also clarifies the semantics against siblings by explaining that deselected regions' vessels must not be shown.

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 establishes clear context: this tool should reflect only currently watched regions, and if no live subscription exists, no filter applies and everything is returned. It does not explicitly name sibling alternatives as 'do not use this for X,' but the intended usage is unmistakable.

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