addFeatureTag
Attach tags to feature flags in Unleash MCP to categorize, manage, and control their behavior effectively within your feature toggle system.
Instructions
Add a tag to a feature flag
Input Schema
Name | Required | Description | Default |
---|---|---|---|
featureName | Yes | Name of the feature to add the tag to | |
tagType | Yes | Type of the tag | |
tagValue | Yes | Value of the tag |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"featureName": {
"description": "Name of the feature to add the tag to",
"minLength": 1,
"type": "string"
},
"tagType": {
"description": "Type of the tag",
"minLength": 1,
"type": "string"
},
"tagValue": {
"description": "Value of the tag",
"minLength": 1,
"type": "string"
}
},
"required": [
"featureName",
"tagType",
"tagValue"
],
"type": "object"
}