delete_rule
Remove a specific rule from a feature flag in Flipt MCP Server by specifying the namespace, flag key, and rule ID to manage configurations effectively.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
flagKey | Yes | ||
namespaceKey | Yes | ||
ruleId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"flagKey": {
"minLength": 1,
"type": "string"
},
"namespaceKey": {
"minLength": 1,
"type": "string"
},
"ruleId": {
"minLength": 1,
"type": "string"
}
},
"required": [
"namespaceKey",
"flagKey",
"ruleId"
],
"type": "object"
}