expo_testflight_feedback
Fetch screenshot feedback from TestFlight. Returns feedback metadata including device info, user comments, and screenshot URLs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| bundleId | Yes |
Fetch screenshot feedback from TestFlight. Returns feedback metadata including device info, user comments, and screenshot URLs.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| bundleId | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds valuable behavioral context beyond annotations by specifying the return contents: metadata including device info, user comments, and screenshot URLs. It does not discuss pagination or authorization, but with strong annotations this is sufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that immediately states the tool's purpose and then concisely lists returned content. Every word earns its place; there is no repetition or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only fetch with two parameters and no output schema, the description explains the source and return content adequately. However, it omits crucial parameter semantics (especially the required bundleId) and does not mention whether results are paginated or limited, leaving clear gaps in context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
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 by explaining bundleId and limit. It names neither parameter, leaving their meaning entirely to the bare schema names. The description adds no value beyond what the schema fields themselves already show.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Fetch') and resource ('screenshot feedback from TestFlight'), clearly distinguishing it from the sibling tool expo_testflight_crashes. It states exactly what type of data is retrieved.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies the tool is for retrieving TestFlight screenshot feedback, but it does not explicitly mention when to use it over alternatives like expo_testflight_crashes. No exclusion or alternative guidance is provided, leaving usage context implicit rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.