getFlag
Retrieve detailed information about a specific feature flag in the Unleash MCP server to manage and understand feature toggle configurations.
Instructions
Get detailed information about a feature flag
Input Schema
Name | Required | Description | Default |
---|---|---|---|
flagName | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"flagName": {
"type": "string"
}
},
"required": [
"flagName"
],
"type": "object"
}