get_user_story_statuses
Retrieve available statuses for user stories in a Taiga project by providing a session ID and project ID. Enables project management automation by querying status options directly from the Taiga MCP Bridge.
Instructions
Lists the available statuses for user stories within a specific project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | ||
session_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"title": "Project Id",
"type": "integer"
},
"session_id": {
"title": "Session Id",
"type": "string"
}
},
"required": [
"session_id",
"project_id"
],
"title": "get_user_story_statusesArguments",
"type": "object"
}