create_flag
Generate and configure feature flags in Flipt MCP Server by defining namespace, key, name, and type (Boolean or Variant) to manage application behavior dynamically.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
enabled | No | ||
key | Yes | ||
name | Yes | ||
namespaceKey | Yes | ||
type | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"enabled": {
"type": "boolean"
},
"key": {
"minLength": 1,
"type": "string"
},
"name": {
"minLength": 1,
"type": "string"
},
"namespaceKey": {
"minLength": 1,
"type": "string"
},
"type": {
"enum": [
"VARIANT_FLAG_TYPE",
"BOOLEAN_FLAG_TYPE"
],
"type": "string"
}
},
"required": [
"namespaceKey",
"key",
"name",
"type"
],
"type": "object"
}