Skip to main content
Glama

apple_tv_press

Press Apple TV remote buttons (up, down, left, right, select, back, home) to navigate the interface. Send tap, double-tap, or hold actions; check visible UI state separately with a screenshot.

Instructions

Press a remote button. Navigation is non-idempotent.

The press itself has no visual feedback and does not report which UI element has focus. Use apple_tv_screenshot separately when visible UI state needs to be inspected or verified. Uncertain transport failures are not retried automatically.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
countNoNumber of sequential presses.
actionNoTap, double-tap, or hold.tap
buttonYesRemote button to press.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
countYes
actionYes
buttonYes
completedYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already declare idempotentHint=false and readOnlyHint=false, but the description adds genuinely new context: presses have no visual feedback, do not report focus, and are not auto-retried on uncertain failures. That is material for an agent planning a navigation sequence.

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?

Front-loaded purpose followed by behavioral caveats and an alternative tool, with no filler. The two sentences about lacking visual feedback and not reporting focus overlap slightly, but overall it is tight.

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?

With an output schema present and annotations covering the safety profile, the description need not explain return values; it instead supplies the operational caveats (no focus reporting, no retries) an agent needs. What remains unstated is how the non-idempotent navigation interacts with the count parameter.

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% with documented count, action, and button fields, so the schema already carries parameter meaning. The description adds nothing about button/action semantics beyond what is in the schema, making 3 the appropriate baseline.

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 and resource ('Press a remote button'), which is unambiguous and distinct from the playback/seek/skip siblings. It does not, however, enumerate the button set in prose, leaving that to the schema.

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?

Explicitly routes the agent to apple_tv_screenshot when visible UI state must be inspected or verified, and warns that uncertain transport failures are not retried automatically. It gives no guidance on when to prefer other navigation siblings (seek, skip, playback) over pressing.

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