create_user_story
Create a new user story in Taiga projects by providing session ID, project ID, subject, and additional details. Streamline project management tasks through AI integration with the Taiga MCP Bridge.
Instructions
Creates a new user story within a project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
kwargs | Yes | ||
project_id | Yes | ||
session_id | Yes | ||
subject | Yes |
Input Schema (JSON Schema)
{
"properties": {
"kwargs": {
"title": "kwargs",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "integer"
},
"session_id": {
"title": "Session Id",
"type": "string"
},
"subject": {
"title": "Subject",
"type": "string"
}
},
"required": [
"session_id",
"project_id",
"subject",
"kwargs"
],
"title": "create_user_storyArguments",
"type": "object"
}