Connect the Google Tasks MCP server to your AI agent Open source, MIT, on npm. Setup instructions for Claude, Cursor and Codex are in the repository; adoption questions — Telegram. GitHub repository Telegram

Google Tasks: Get a task — MCP tool

Google Tasks MCP tool: Fetches one task by id, including hierarchy and assignment metadata.

Technical name: get_task

What task it solves

I want to inspect one task.

Returns a single task: title, notes, status, due (date only), completed timestamp, parent, position, links, webViewLink and the read-only assignmentInfo for tasks assigned from Docs/Chat.

When to use it

Use it when you hold a task id and need its current state — for example before an update, or to check whether a write landed after an ambiguous failure (writes are never retried automatically).

What to provide

  • tasklist_idrequired. "@default" targets the default list.
  • task_idrequired. The task id from list_tasks or create_task output.

What it returns

The full task object.

What changes in Google Tasks

The tool reads Google Tasks data and does not change it.

Example request

Show me the details of that task in Google Tasks. Ask for any required identifiers that are missing.

Errors and limitations

A wrong task or list id returns HTTP 404. due never carries a time of day — the API stores dates only.

Access also depends on token permissions, quotas, and upstream API limits.

Related MCP tools

Technical details