Skip to main content
Glama

snapshot

Capture a single still frame from the camera's current stream to see what it is pointing at. Uses the existing stream without starting a new session.

Instructions

Capture one still frame of whatever the camera is pointed at.

This looks into the room, so call it only when the user asks to see the camera. The frame comes from the stream the camera is already sending, so it does not start a second session.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

A4.7/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and discloses meaningful behavior: the frame comes from the existing stream and does not start a second session. It also flags the privacy-relevant fact that the tool captures what is in the room. It does not mention return format or failure modes, but for a simple zero-parameter tool this is strong context.

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?

Three short sentences, front-loaded with the primary action, followed by usage guidance and a behavioral clarification. Every sentence earns its place with no repetition or filler.

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 zero-parameter, no-output-schema tool, the description fully covers what the tool does, when to invoke it, and a key behavioral trait (reuses existing stream). An agent can select and call it correctly without additional information.

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

Parameters4/5

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

The tool has zero parameters, and schema coverage is reported as 100%, so there is nothing for the description to add. The baseline for zero-parameter tools is 4, and the description appropriately avoids inventing parameter details.

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 states a specific verb and resource: 'Capture one still frame of whatever the camera is pointed at.' This clearly differentiates snapshot from camera_status (status reporting) and pan_tilt controls (movement).

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

Usage Guidelines5/5

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

The description gives an explicit usage condition: 'call it only when the user asks to see the camera.' It also provides an implicit exclusion by warning that this 'looks into the room,' signaling it is not a background or metadata operation.

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