get-tasklist
Retrieve a specific task list by its ID using the Google Tasks MCP Server, enabling direct task management through the Claude interface.
Instructions
Get a task list by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tasklist | Yes | Task list ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"tasklist": {
"description": "Task list ID",
"type": "string"
}
},
"required": [
"tasklist"
],
"type": "object"
}