evaluate_boolean_flag
Determine the state of a boolean feature flag by providing namespace, flag key, and entity ID. Integrates with Flipt MCP Server for real-time evaluation and decision-making in applications.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | No | ||
entityId | Yes | ||
flagKey | Yes | ||
namespaceKey | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"context": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"entityId": {
"minLength": 1,
"type": "string"
},
"flagKey": {
"minLength": 1,
"type": "string"
},
"namespaceKey": {
"minLength": 1,
"type": "string"
}
},
"required": [
"namespaceKey",
"flagKey",
"entityId"
],
"type": "object"
}