Create, track, and manage Google Tasks and task lists — directly from your AI workflows.
A Model Context Protocol (MCP) server that exposes Google Tasks' API for creating, listing, updating, completing, and deleting tasks and task lists.
Overview
The Google Tasks MCP Server provides full programmatic access to Google Tasks through a stateless, multi-tenant interface:
List, create, update, and delete task lists
List, create, look up, update, complete, and delete individual tasks
Every mutating tool that overwrites state (update_task, update_tasklist) returns both the before and after state of the resource
Perfect for:
Automating to-do list management and task tracking from AI agents
Building assistants that can create and complete tasks on a user's behalf
Integrating Google Tasks actions into LLM-powered pipelines and reminders
Tools
List all task lists accessible by the user. Returns task list IDs, titles, and metadata. Use the task list ID from the response to access tasks within a list.
Create a new task in a specific task list. Provide the task list ID, title, and optional notes and due date. Returns the created task with its assigned ID.
Inputs:
- `tasklist_id` (string, required) — The unique ID of the Google Tasks list.- `title` (string, required) — The title of the new task.- `notes` (string, optional, default: "") — Optional details or description for the task.- `due` (string, optional, default: "") — Optional due date. MUST be an RFC 3339 timestamp (e.g., '2026-06-17T00:00:00.000Z').
output data schema:
Gets the detail of a specific task from the task list. Returns the full task object including title, notes, due date, status, and position.
Inputs:
- `tasklist_id` (string, required) — The unique ID of the Google Tasks list.- `task_id` (string, required) — The unique ID of the Google Task
DESTRUCTIVE — REQUIRES EXPLICIT USER CONFIRMATION BEFORE CALLING. Permanently deletes a specific task from the task list. This action is irreversible — the deleted task and all its data cannot be recovered. NEVER call this tool autonomously or as part of an automated flow. You MUST stop, tell the user exactly what will be deleted and that it is permanent, and wait for their explicit written confirmation before proceeding.
Inputs:
- `tasklist_id` (string, required) — The unique ID of the Google Tasks list.- `task_id` (string, required) — The unique ID of the Google Task
output data schema:
{ id: string; title: string | null;
Mark a specific task as completed from the task list. Sets the task status to 'completed'. Returns the updated task object.
Inputs:
- `tasklist_id` (string, required) — The unique ID of the Google Tasks list.- `task_id` (string, required) — The unique ID of the Google Task
Updates an existing task. Only the fields you provide are changed — others keep their current value. NOTE: this overwrites the current field values — the original state is not stored after the call. The response includes both the before and after state so you have a full record of what changed.
Inputs:
- `tasklist_id` (string, required) — The unique ID of the Google Tasks list.- `task_id` (string, required) — The unique ID of the Google Task- `task_title` (string, required) — The title of the task.- `notes` (string, optional, default: "") — Optional details or description for the task.- `due` (string, optional, default: "") — Optional due date. MUST be an RFC 3339 timestamp (e.g., '2026-06-17T00:00:00.000Z').
Create a brand new task list. Returns the created task list with its assigned ID and metadata.
Inputs:
- `tasklist_name` (string, required) — The name of the Google Tasks list.
DESTRUCTIVE — REQUIRES EXPLICIT USER CONFIRMATION BEFORE CALLING. Permanently deletes an entire task list with all tasks in it. This action is irreversible — the task list and all its tasks cannot be recovered. NEVER call this tool autonomously or as part of an automated flow. You MUST stop, tell the user exactly what will be deleted and that it is permanent, and wait for their explicit written confirmation before proceeding.
Inputs:
- `tasklist_id` (string, required) — The unique ID of the Google Tasks list.
tasklist_id — The unique ID of a Google Tasks list. Obtain it from list_task_lists, create_tasklist, or any task list response's id field. Required by every task-level and task-list-level tool.
task_id — The unique ID of a Google Task within a task list. Obtain it from list_tasks, add_task, or any task response's id field.
next_page_token — Returned by list_task_lists and when the underlying Google Tasks API indicates more results exist. This server currently passes through a single page from the upstream API and does not expose an input parameter to request subsequent pages.
Task List ID (tasklist_id):
opaque identifier assigned by the Google Tasks API, or the literal value `@default` for the user's default task list.Example: MDAxMjM0NTY3ODkwMTIzNDU2Nzo6MA
task ID (task_id):
opaque identifier assigned by the Google Tasks API when a task is created.Example: MTIzNDU2Nzg5
Troubleshooting
Cause: API key not provided in request headers or incorrect format
Solution:
Verify Authorization: Bearer YOUR_API_KEY and X-Mewcp-Credential-Id: CREDENTIAL-ID headers are present
Check API key is active in your MewCP account
Cause: API calls have exceeded your request limits
Solution:
Check credit usage in your Curious Layer dashboard
Upgrade to a paid plan or add credits for higher limits
Contact support for credit adjustments
Cause: No Google Tasks credential linked to your account
Solution:
Go to Credentials in your MewCP dashboard
Connect your Google account via OAuth
Retry the request with the correct X-Mewcp-Credential-Id header
Cause: JSON payload is invalid or missing required fields
"error": { "code": "NOT_FOUND", "message": "No task found with the title {task_title}", "details": null },
"data": null
}
retriable — true when it is safe to retry (rate limit, network error, 503). false for auth, not-found, and other non-transient errors.
retry_after_seconds — seconds to wait before retrying; present only when retriable is true and the upstream specifies a delay.
error.code — machine-readable string: NOT_FOUND (get_task_by_name found no match), AUTH_ERROR (no OAuth access token available), UPSTREAM_ERROR (the Google Tasks API returned an HTTP error), SERVER_ERROR (unexpected server-side failure).