delete_rollout
Remove a specific rollout associated with a feature flag and namespace in Flipt MCP Server to manage deployment configurations effectively.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| flagKey | Yes | ||
| namespaceKey | Yes | ||
| rolloutId | 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"
},
"rolloutId": {
"minLength": 1,
"type": "string"
}
},
"required": [
"namespaceKey",
"flagKey",
"rolloutId"
],
"type": "object"
}