Skip to main content
Glama

snapshot

Return combined bridge telemetry—state, mission, and inventory—to support safe AI agent control and observation.

Instructions

Return a combined snapshot of bridge telemetry.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
include_stateNo
include_missionNo
include_inventoryNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations provided, so the description carries the full burden. It doesn't state whether the call is read-only, whether it has side effects, whether it's rate-limited, or what 'combined' means. Only 'Return' implies a read, which is minimal.

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?

A single, front-loaded sentence with no filler. Efficient, though perhaps too terse given the tool's surface area.

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

Completeness2/5

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

Output schema exists, so return values don't need explaining. But with no annotations and zero parameter documentation, the definition is missing too much: no indication of scope ('bridge telemetry' undefined), no parameter meaning, no safety profile. Inadequate for an agent deciding whether to call it.

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 0%, and the description mentions no parameters at all. Three boolean parameters (include_state, include_mission, include_inventory) exist but are undocumented in both places. The description doesn't compensate for the coverage gap, but baseline for low coverage with a reasonable parameter count is around 3.

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

Purpose4/5

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

States a specific verb+resource: 'Return a combined snapshot of bridge telemetry'. Clear what it does, though 'bridge telemetry' is somewhat vague and it doesn't distinguish itself from siblings like poll_events, get_system_health_alerts, or version.

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

Usage Guidelines2/5

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

No guidance on when to use this vs alternatives, no prerequisites, no mention of what 'bridge telemetry' comprises or when a snapshot is preferable to event polling or polling state separately.

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