Skip to main content
Glama

minecraft_look

Set the agent's view direction by specifying absolute yaw and pitch in radians. Use this to control exactly where the player looks.

Instructions

Set absolute yaw and pitch in radians.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
yawYes
pitchYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description must carry the behavioral burden. It does add meaningful context by clarifying that the angles are 'absolute' and expressed in 'radians.' However, it does not disclose side effects, response/return behavior, or angle normalization, which keeps it at a solid but not rich level.

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?

A single sentence that immediately states the action and its key qualifiers. There is no filler, and the most important information is front-loaded.

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

Completeness4/5

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

For a simple two-parameter setter with no nested objects or output schema, this description is largely complete. The main missing items are broader usage context and explicit behavioral caveats, but they are not critical for invoking a basic look command.

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?

Schema description coverage is 0%, but the description names both parameters and adds critical meaning with 'radians' and 'absolute.' For two simple numeric parameters, this compensates well for the schema gap, even though it does not define the yaw zero-point or directional convention.

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 uses a precise verb ('Set'), names the exact resource ('absolute yaw and pitch'), and specifies units ('radians'). It clearly distinguishes this look/orientation tool from the sibling movement, inventory, and interaction commands.

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?

There is no guidance on when to use this tool versus alternatives, no prerequisite context, and no mention of what situations call for setting look direction. The sibling list offers no look-alternative, but the description does not explicitly establish usage boundaries or exclusions.

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