evaluate_batch
Process multiple feature flag evaluations in a single request, optimizing decision-making workflows for AI assistants and LLMs through the Flipt MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
requests | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"requests": {
"items": {
"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"
},
"type": "array"
}
},
"required": [
"requests"
],
"type": "object"
}