get_segment
Retrieve detailed information about a specific segment within a namespace using Flipt MCP Server, enabling AI assistants and LLMs to interact with feature flag data directly.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
namespaceKey | Yes | ||
segmentKey | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"namespaceKey": {
"minLength": 1,
"type": "string"
},
"segmentKey": {
"minLength": 1,
"type": "string"
}
},
"required": [
"namespaceKey",
"segmentKey"
],
"type": "object"
}