archiveFlag
Archive a specific feature flag within a project using the Unleash MCP server. Manage feature toggles effectively by removing inactive or outdated flags.
Instructions
Archive a feature flag in a specific project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
featureName | Yes | Name of the feature flag to archive | |
projectId | Yes | ID of the project |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"featureName": {
"description": "Name of the feature flag to archive",
"type": "string"
},
"projectId": {
"description": "ID of the project",
"type": "string"
}
},
"required": [
"projectId",
"featureName"
],
"type": "object"
}