Skip to main content
Glama

get_operation_status

Read-onlyIdempotent

Check the status of an approved App Store Connect operation by plan ID. Optionally poll for previously approved uncertain operations, without executing remaining writes.

Instructions

Inspect a current-process plan journal. Optional polling only reads back previously approved uncertain operations; it never executes remaining writes. Journal files remain available after process exit, but execution requires a fresh plan.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pollNo
planIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.1.0

TDQS

A3.6/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and idempotentHint, and the description adds value by explaining that polling never executes writes and that journal files persist after process exit. This goes beyond the structured hints without contradicting them.

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?

Three sentences with no wasted words, front-loading the primary purpose and then adding important behavioral details. The structure is efficient and logically ordered.

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

Completeness3/5

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

The description covers purpose, polling behavior, and persistence, but lacks explicit parameter explanations and any indication of the output format. Given the simple two-parameter schema and no output schema, it is adequate but has notable gaps.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate for parameter meaning, but it does not explicitly explain planId or the poll parameter. It only alludes to polling behavior implicitly, leaving parameter semantics largely undefined.

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?

The description clearly states the tool inspects a current-process plan journal, with a specific verb and resource. It implies read-only inspection and distinguishes from execution tools by noting it never executes remaining writes, but it does not explicitly name sibling tools.

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 provides clear context: polling reads back previously approved uncertain operations, and execution requires a fresh plan. It implies when to use this tool (for status inspection) versus alternatives (execution), but does not explicitly reference sibling tools.

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