create_variant
Generate variants for feature flags in Flipt MCP Server by specifying namespace, flag, and key details, enabling dynamic feature management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attachment | No | ||
description | No | ||
flagKey | Yes | ||
key | Yes | ||
name | No | ||
namespaceKey | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"attachment": {
"type": "string"
},
"description": {
"type": "string"
},
"flagKey": {
"minLength": 1,
"type": "string"
},
"key": {
"minLength": 1,
"type": "string"
},
"name": {
"type": "string"
},
"namespaceKey": {
"minLength": 1,
"type": "string"
}
},
"required": [
"namespaceKey",
"flagKey",
"key"
],
"type": "object"
}