getTaskById
Retrieve a specific task by its unique ID using Teamwork MCP server. Input the task ID to access detailed task information directly from the Teamwork API.
Instructions
Get a specific task by ID from Teamwork
Input Schema
Name | Required | Description | Default |
---|---|---|---|
taskId | Yes | The ID of the task to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"taskId": {
"description": "The ID of the task to retrieve",
"type": "integer"
}
},
"required": [
"taskId"
],
"type": "object"
}