Restore archived flag
restore_flagRestore a previously archived flag to make it active again for managing targeting and rollouts.
Instructions
Restore a previously archived flag.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| flag | Yes | ||
| project | Yes |
restore_flagRestore a previously archived flag to make it active again for managing targeting and rollouts.
Restore a previously archived flag.
| Name | Required | Description | Default |
|---|---|---|---|
| flag | Yes | ||
| project | Yes |
Changes observed during successful MCP inspections.
v0.1.6Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description communicates that the flag transitions from an archived state back to a restored one, which is useful behavioral context. The destructiveHint=false annotation already covers the safety profile, though side effects and idempotency are not discussed.
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 one short sentence with no filler, but it mostly restates the title and adds little new information. It is concise rather than genuinely informative.
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 two-parameter tool, the description is too minimal: it omits parameter semantics, fails to address how project/flag identifiers should be supplied, and gives no guidance on expected behavior or alternatives. An agent can make a reasonable guess but would benefit from richer 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%, and the description does not clarify what 'project' and 'flag' represent or what formats/identifiers are expected. 'flag' is mentioned generically, but 'project' is entirely unaddressed.
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 states a clear action ('Restore') and a clear object ('previously archived flag'), so an agent can tell this is an un-archive operation. It does not explicitly contrast with archive_flag, but the inverse relationship is strongly implied.
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 phrase 'previously archived' implies the intended use case and distinguishes restoration from archive/delete operations. However, it does not explicitly name alternatives, state prerequisites, or explain when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.