delete_distribution
Remove a specific distribution for a feature flag rule in Flipt MCP Server by specifying namespace, flag, rule, and distribution IDs.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
distributionId | Yes | ||
flagKey | Yes | ||
namespaceKey | Yes | ||
ruleId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"distributionId": {
"minLength": 1,
"type": "string"
},
"flagKey": {
"minLength": 1,
"type": "string"
},
"namespaceKey": {
"minLength": 1,
"type": "string"
},
"ruleId": {
"minLength": 1,
"type": "string"
}
},
"required": [
"namespaceKey",
"flagKey",
"ruleId",
"distributionId"
],
"type": "object"
}