create_namespace
Add a new namespace to organize and manage feature flags, segments, and evaluations within the Flipt MCP Server. Input key and name to define the namespace structure.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
key | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"key": {
"minLength": 1,
"type": "string"
},
"name": {
"minLength": 1,
"type": "string"
}
},
"required": [
"key",
"name"
],
"type": "object"
}