get_milestone
Retrieve detailed information about a specific milestone using its ID via the Taiga MCP Bridge, enabling AI systems to access and manage Taiga project data.
Instructions
Gets detailed information about a specific milestone by its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
milestone_id | Yes | ||
session_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"milestone_id": {
"title": "Milestone Id",
"type": "integer"
},
"session_id": {
"title": "Session Id",
"type": "string"
}
},
"required": [
"session_id",
"milestone_id"
],
"title": "get_milestoneArguments",
"type": "object"
}