update_user_story
Modifies existing user stories in Taiga project management platform by updating their details via the MCP Bridge. Requires session ID, user story ID, and specific parameters.
Instructions
Updates details of an existing user story.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
kwargs | Yes | ||
session_id | Yes | ||
user_story_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"kwargs": {
"title": "kwargs",
"type": "string"
},
"session_id": {
"title": "Session Id",
"type": "string"
},
"user_story_id": {
"title": "User Story Id",
"type": "integer"
}
},
"required": [
"session_id",
"user_story_id",
"kwargs"
],
"title": "update_user_storyArguments",
"type": "object"
}