get_epic
Retrieve detailed information about a specific epic using its ID through the Taiga MCP Bridge, enabling seamless integration with AI systems for project management.
Instructions
Gets detailed information about a specific epic by its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
epic_id | Yes | ||
session_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"epic_id": {
"title": "Epic Id",
"type": "integer"
},
"session_id": {
"title": "Session Id",
"type": "string"
}
},
"required": [
"session_id",
"epic_id"
],
"title": "get_epicArguments",
"type": "object"
}