get_mission
Fetch one public Birdfury mission by numeric id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Fetch one public Birdfury mission by numeric id.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Input schema / additionalPropertiesAdded value: +falseInput schema / properties / id / descriptionRemoved value: -"Mission id, e.g. \"42178\"."Input schema / properties / id / maxLengthAdded value: +64Input schema / properties / id / minLengthAdded value: +1Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must disclose behavioral traits. It only states the basic retrieval operation, omitting details such as rate limits, error handling (e.g., missing id), or whether authentication is needed. This is minimal transparency for a simple read tool.
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?
A single sentence that front-loads the action and resource, with no unnecessary words. It is appropriately concise for a simple tool with one parameter.
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?
The tool is simple (one parameter, no output schema) and the description captures its essential purpose. However, it could be more complete by specifying that it returns a mission object, handling of invalid IDs, or that it only works for public missions. The 'public' qualifier is useful but unelaborated.
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 coverage is 0% with no description for the id parameter. The description adds that the id is 'numeric', clarifying the expected format beyond the schema's string type. However, it does not explain constraints like maxLength=64 or provide example values, so the added value is modest.
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 clearly states the action (Fetch), resource (public Birdfury mission), and identifier (numeric id). It distinguishes the tool from siblings like list_missions (which lists multiple) and get_request_status (different resource), though it does not explicitly contrast with them.
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?
No guidance on when to use this tool versus alternatives (e.g., list_missions). The description mentions 'public' but does not explain constraints like authentication, prerequisites, or error conditions, leaving the agent to infer usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.