get_flag
Retrieve the state of a specific feature flag using namespace and flag keys. Enables real-time flag evaluation via the Flipt MCP Server for AI-driven decision-making.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
flagKey | Yes | ||
namespaceKey | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"flagKey": {
"minLength": 1,
"type": "string"
},
"namespaceKey": {
"minLength": 1,
"type": "string"
}
},
"required": [
"namespaceKey",
"flagKey"
],
"type": "object"
}