update_epic
Modify existing epic details in Taiga project management platform via MCP server, enabling AI systems to update project workflows efficiently.
Instructions
Updates details of an existing epic.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| epic_id | Yes | ||
| kwargs | Yes | ||
| session_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"epic_id": {
"title": "Epic Id",
"type": "integer"
},
"kwargs": {
"title": "kwargs",
"type": "string"
},
"session_id": {
"title": "Session Id",
"type": "string"
}
},
"required": [
"session_id",
"epic_id",
"kwargs"
],
"title": "update_epicArguments",
"type": "object"
}