Skip to main content
Glama

Bucketeer MCP Server

Official
by bucketeer-io

createFeatureFlag

Create a new feature flag with custom variations and targeting rules to enable controlled feature rollouts and A/B testing in your application.

Instructions

Create a new feature flag in the specified environment

Input Schema

NameRequiredDescriptionDefault
defaultOffVariationIndexYesIndex of the variation to serve when flag is off (0-based)
defaultOnVariationIndexYesIndex of the variation to serve when flag is on (0-based)
descriptionNoDescription of the feature flag
environmentIdNoEnvironment ID (uses default if not provided)
idYesUnique identifier for the feature flag (alphanumeric, hyphens, underscores)
nameYesHuman-readable name for the feature flag
tagsNoTags for the feature flag
variationTypeNoType of the variation values (default: STRING)
variationsYesList of variations (at least 2 required)

Input Schema (JSON Schema)

{ "properties": { "defaultOffVariationIndex": { "description": "Index of the variation to serve when flag is off (0-based)", "type": "number" }, "defaultOnVariationIndex": { "description": "Index of the variation to serve when flag is on (0-based)", "type": "number" }, "description": { "description": "Description of the feature flag", "type": "string" }, "environmentId": { "description": "Environment ID (uses default if not provided)", "type": "string" }, "id": { "description": "Unique identifier for the feature flag (alphanumeric, hyphens, underscores)", "type": "string" }, "name": { "description": "Human-readable name for the feature flag", "type": "string" }, "tags": { "description": "Tags for the feature flag", "items": { "type": "string" }, "type": "array" }, "variationType": { "description": "Type of the variation values (default: STRING)", "enum": [ "STRING", "BOOLEAN", "NUMBER", "JSON" ], "type": "string" }, "variations": { "description": "List of variations (at least 2 required)", "items": { "properties": { "description": { "description": "Description of the variation", "type": "string" }, "name": { "description": "Name of the variation", "type": "string" }, "value": { "description": "The value returned when this variation is served", "type": "string" } }, "required": [ "value", "name" ], "type": "object" }, "type": "array" } }, "required": [ "id", "name", "variations", "defaultOnVariationIndex", "defaultOffVariationIndex" ], "type": "object" }

Other Tools from Bucketeer MCP Server

Related Tools

    MCP directory API

    We provide all the information about MCP servers via our MCP API.

    curl -X GET 'https://glama.ai/api/mcp/v1/servers/bucketeer-io/bucketeer-mcp'

    If you have feedback or need assistance with the MCP directory API, please join our Discord server