google_tasks_get_task
Retrieve specific task details by providing the task ID and optional task list ID from Google Tasks. Integrates with Google MCP for AI client compatibility.
Instructions
Get details about a specific task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
taskId | Yes | ID of the task to retrieve | |
taskListId | No | ID of the task list the task belongs to (uses default if not specified) |
Input Schema (JSON Schema)
{
"properties": {
"taskId": {
"description": "ID of the task to retrieve",
"type": "string"
},
"taskListId": {
"description": "ID of the task list the task belongs to (uses default if not specified)",
"type": "string"
}
},
"required": [
"taskId"
],
"type": "object"
}