get_user_story
Retrieve detailed information about a specific user story by its ID using the Taiga MCP Bridge, enabling efficient project management and collaboration with AI systems.
Instructions
Gets detailed information about a specific user story by its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
session_id | Yes | ||
user_story_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"session_id": {
"title": "Session Id",
"type": "string"
},
"user_story_id": {
"title": "User Story Id",
"type": "integer"
}
},
"required": [
"session_id",
"user_story_id"
],
"title": "get_user_storyArguments",
"type": "object"
}