getProjectFeatures
Retrieve all feature toggles for a specific project from Unleash MCP, enabling centralized management and visibility of feature configurations.
Instructions
Get all features for a specific project from the Unleash repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"projectId": {
"minLength": 1,
"type": "string"
}
},
"required": [
"projectId"
],
"type": "object"
}