Skip to main content
Glama
canopy-labs

Featureflip

Official

Flag status across environments

flag_status
Read-only

Check a feature flag's status across environments, including enabled state, strategy, default variation, and prerequisites, to understand its rollout configuration at a glance.

Instructions

Compact cross-environment view of one flag: enabled state, strategy, default variation, and prerequisites per environment.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
flagYes
projectYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.6

TDQS

B3.2/5.0
Behavior3/5

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

The readOnlyHint annotation already establishes the safety profile, and the description adds that this is a compact view spanning environments with specific fields. This is useful but not a deep disclosure of behavior such as aggregation or omission of full targeting details.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, front-loaded sentence that names the scope first and then enumerates the returned fields. Every word earns its place with no repetition or padding.

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?

For a simple two-parameter read-only tool, the description covers the output fields and cross-environment behavior. It does not describe return format or errors, but the low complexity and readOnlyHint annotation make those omissions minor.

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 needed to compensate, but it only mentions 'one flag' and 'environments' indirectly. The 'project' parameter is never referenced, and no format or relationship details are given beyond the schema's bare names.

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 identifies a specific resource ('one flag') and a specific scope ('cross-environment'), and lists the fields shown. It is clear enough to distinguish from list_flags and get_targeting, though it never names a sibling explicitly.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to choose this tool over get_flag, list_flags, or update_flag_environment_config. The phrase 'compact cross-environment view' implies an overview use case, but no exclusions or alternative routing are provided.

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