delete_segment
Remove a specific segment from a namespace using the Flipt MCP Server. Ensure clean and organized feature flag management by deleting unused or outdated segments.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | ||
namespaceKey | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"key": {
"minLength": 1,
"type": "string"
},
"namespaceKey": {
"minLength": 1,
"type": "string"
}
},
"required": [
"namespaceKey",
"key"
],
"type": "object"
}