delete_namespace
Remove a namespace from the Flipt MCP Server to manage feature flags and segments efficiently by specifying the unique key associated with it.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"key": {
"minLength": 1,
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}