update_flag
Modify feature flag properties such as name, description, and enabled status for targeted updates within the Flipt MCP Server system.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
enabled | No | ||
key | Yes | ||
name | Yes | ||
namespaceKey | 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"
}
},
"required": [
"namespaceKey",
"key",
"name"
],
"type": "object"
}