← Top 100 / Full directory (5,940)

Google Tasks

Communication Remote Official Top 100 14 tools

Google Tasks provides a simple to-do list and task management system integrated into Gmail and Google Calendar for quick and easy tracking

Docs ↗

How to connect

1
Add the remote MCP URL
Paste this endpoint into Claude, ChatGPT, or Cursor MCP settings.
https://googletasks.run.tools
2
Verify the tools loaded
Confirm tools/list returns the expected tools before relying on them in production.

Tools

(14)
  • GOOGLETASKS_CLEAR_TASKS

    Permanently clears all completed tasks from a specified Google Tasks list; this action is destructive and idempotent.

  • GOOGLETASKS_CREATE_TASK_LIST

    Creates a new task list with the specified title.

  • GOOGLETASKS_DELETE_TASK

    Deletes a specified task from a given task list in Google Tasks.

  • GOOGLETASKS_DELETE_TASK_LIST

    Permanently deletes an existing Google Task list, identified by `tasklist_id`, along with all its tasks; this operation is irreversible.

  • GOOGLETASKS_GET_TASK

    Use to retrieve a specific Google Task if its `task_id` and parent `tasklist_id` are known.

  • GOOGLETASKS_GET_TASK_LIST

    Retrieves a specific task list from the user's Google Tasks if the `tasklist_id` exists for the authenticated user.

  • GOOGLETASKS_INSERT_TASK

    Creates a new task in a given `tasklist_id`, optionally as a subtask of an existing `task_parent` or positioned after an existing `task_previous` sibling, where both `task_parent` and `task_previous` must belong to the same `tasklist_id` if specified. IMPORTANT: Date fields (due, completed) accept various formats like '28 Sep 2025', '11:59 PM, 22 Sep 2025', or ISO format '2025-09-21T15:30:00Z' and will automatically convert them to RFC3339 format required by the API.

  • GOOGLETASKS_LIST_TASK_LISTS

    Fetches the authenticated user's task lists from Google Tasks; results may be paginated.

  • GOOGLETASKS_LIST_TASKS

    Retrieves tasks from a Google Tasks list; all date/time strings must be RFC3339 UTC, and `showCompleted` must be true if `completedMin` or `completedMax` are specified.

  • GOOGLETASKS_MOVE_TASK

    Moves the specified task to another position in the destination task list.

  • GOOGLETASKS_PATCH_TASK

    Partially updates an existing task (identified by `task_id`) within a specific Google Task list (identified by `tasklist_id`), modifying only the provided attributes from `TaskInput` (e.g., `title`, `notes`, `due` date, `status`) and requiring both the task and list to exist.

  • GOOGLETASKS_PATCH_TASK_LIST

    Updates the title of an existing Google Tasks task list.

  • GOOGLETASKS_UPDATE_TASK

    Updates the specified task.

  • GOOGLETASKS_UPDATE_TASK_LIST

    Updates the authenticated user's specified task list.

Related servers