Get the FREE Ultimate OpenClaw Setup Guide →

googletasks-automation

Scanned
npx machina-cli add skill ComposioHQ/awesome-claude-skills/googletasks-automation --openclaw
Files (1)
SKILL.md
6.0 KB

Google Tasks Automation via Rube MCP

Create, manage, organize, and bulk-operate on Google Tasks and task lists using Rube MCP (Composio).

Toolkit docs: composio.dev/toolkits/googletasks

Prerequisites

  • Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
  • Active connection via RUBE_MANAGE_CONNECTIONS with toolkit googletasks
  • Always call RUBE_SEARCH_TOOLS first to get current tool schemas

Setup

Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.

  1. Verify Rube MCP is available by confirming RUBE_SEARCH_TOOLS responds
  2. Call RUBE_MANAGE_CONNECTIONS with toolkit googletasks
  3. If connection is not ACTIVE, follow the returned auth link to complete setup
  4. Confirm connection status shows ACTIVE before running any workflows

Core Workflows

1. List All Task Lists

Use GOOGLETASKS_LIST_TASK_LISTS to fetch all available task lists for the authenticated user.

Tool: GOOGLETASKS_LIST_TASK_LISTS
Parameters:
  - maxResults: Maximum task lists to return
  - pageToken: Pagination token for next page

2. Create a New Task

Use GOOGLETASKS_INSERT_TASK to add a new task to a specific task list.

Tool: GOOGLETASKS_INSERT_TASK
Parameters:
  - tasklist_id (required): ID of the target task list
  - title (required): Task title
  - notes: Task description/notes
  - due: Due date in RFC3339 format (e.g., "2025-01-20T00:00:00.000Z")
  - status: "needsAction" or "completed"
  - task_parent: Parent task ID (to create subtask)
  - task_previous: Previous task ID (for ordering)

3. List All Tasks Across Lists

Use GOOGLETASKS_LIST_ALL_TASKS to fetch tasks across all task lists with optional filters.

Tool: GOOGLETASKS_LIST_ALL_TASKS
Parameters:
  - max_tasks_total: Maximum total tasks to return
  - showCompleted: Include completed tasks
  - showDeleted: Include deleted tasks
  - showHidden: Include hidden tasks
  - dueMin / dueMax: Filter by due date range
  - completedMin / completedMax: Filter by completion date
  - updatedMin: Filter by last update time
  - showAssigned: Include assigned tasks

4. Update an Existing Task

Use GOOGLETASKS_UPDATE_TASK to modify a task's title, notes, due date, or status.

Tool: GOOGLETASKS_UPDATE_TASK
Parameters:
  - tasklist_id (required): Task list ID
  - task_id (required): Task ID to update
  - title: New title
  - notes: Updated notes
  - due: New due date (RFC3339)
  - status: "needsAction" or "completed"

5. Bulk Insert Tasks

Use GOOGLETASKS_BULK_INSERT_TASKS to create multiple tasks at once in a single operation.

Tool: GOOGLETASKS_BULK_INSERT_TASKS
Parameters:
  - tasklist_id (required): Target task list ID
  - tasks (required): Array of task objects (each with title, notes, due, status)
  - batch_size: Number of tasks per batch request

6. Delete or Clear Tasks

Use GOOGLETASKS_DELETE_TASK to remove a specific task, or GOOGLETASKS_CLEAR_TASKS to permanently remove all completed tasks from a list.

Tool: GOOGLETASKS_DELETE_TASK
Parameters:
  - tasklist_id (required): Task list ID
  - task_id (required): Task ID to delete

Tool: GOOGLETASKS_CLEAR_TASKS
Parameters:
  - tasklist (required): Task list ID to clear completed tasks from

Common Patterns

  • Get task list ID first: Always start with GOOGLETASKS_LIST_TASK_LISTS to discover available task lists and their IDs before creating or listing tasks.
  • List then update: Use GOOGLETASKS_LIST_ALL_TASKS or GOOGLETASKS_LIST_TASKS to find task IDs, then use GOOGLETASKS_UPDATE_TASK to modify them.
  • Mark complete: Update a task with status: "completed" using GOOGLETASKS_UPDATE_TASK.
  • Create subtasks: Use GOOGLETASKS_INSERT_TASK with the task_parent parameter set to the parent task's ID.
  • Reorder tasks: Use GOOGLETASKS_MOVE_TASK to change a task's position within its list or reparent it.
  • Batch creation: Use GOOGLETASKS_BULK_INSERT_TASKS for creating many tasks at once (e.g., importing from another system).

Known Pitfalls

  • Both tasklist_id and task_id are required for GOOGLETASKS_UPDATE_TASK, GOOGLETASKS_DELETE_TASK, and GOOGLETASKS_GET_TASK. You cannot operate on a task without knowing which list it belongs to.
  • All date/time strings must be in RFC3339 format (e.g., 2025-01-20T00:00:00.000Z). Other formats will be rejected.
  • GOOGLETASKS_CLEAR_TASKS permanently deletes all completed tasks from a list. This action is irreversible.
  • GOOGLETASKS_LIST_ALL_TASKS fetches across all lists but results may be paginated -- check for pagination tokens.
  • Task list IDs are not the same as task list names. Always resolve names to IDs using GOOGLETASKS_LIST_TASK_LISTS.
  • The default task list is typically named "My Tasks" but its ID is an opaque string, not "default" or "primary".

Quick Reference

ActionToolKey Parameters
List task listsGOOGLETASKS_LIST_TASK_LISTSmaxResults, pageToken
List all tasksGOOGLETASKS_LIST_ALL_TASKSmax_tasks_total, showCompleted, dueMin
List tasks in a listGOOGLETASKS_LIST_TASKStasklist_id, maxResults, showCompleted
Get single taskGOOGLETASKS_GET_TASKtasklist_id, task_id
Create taskGOOGLETASKS_INSERT_TASKtasklist_id, title, notes, due
Bulk create tasksGOOGLETASKS_BULK_INSERT_TASKStasklist_id, tasks
Update taskGOOGLETASKS_UPDATE_TASKtasklist_id, task_id, title, status
Delete taskGOOGLETASKS_DELETE_TASKtasklist_id, task_id
Move/reorder taskGOOGLETASKS_MOVE_TASKtasklist_id, task_id
Clear completedGOOGLETASKS_CLEAR_TASKStasklist

Powered by Composio

Source

git clone https://github.com/ComposioHQ/awesome-claude-skills/blob/master/composio-skills/googletasks-automation/SKILL.mdView on GitHub

Overview

Automate Google Tasks using Rube MCP (Composio) to create, list, update, delete, move, and bulk-insert tasks and task lists. Always search tools first to fetch current schemas and ensure compatibility with your workflow.

How This Skill Works

You connect Rube MCP to the googletasks toolkit with RUBE_SEARCH_TOOLS and RUBE_MANAGE_CONNECTIONS. After a successful ACTIVE connection, you call specific tools (e.g., GOOGLETASKS_LIST_TASK_LISTS, GOOGLETASKS_INSERT_TASK, GOOGLETASKS_BULK_INSERT_TASKS) with required parameters to manage tasks and lists. The workflow emphasizes discovering task lists first and validating schemas before operations.

When to Use It

  • Bulk-create multiple tasks in a single list
  • Update task fields (title, notes, due, status)
  • List tasks across all lists for reporting
  • Delete a specific task or clear completed tasks from a list
  • Discover task lists and IDs before creating or listing tasks

Quick Start

  1. Step 1: Set up Rube MCP and verify RUBE_SEARCH_TOOLS responds, then activate the googletasks toolkit with RUBE_MANAGE_CONNECTIONS
  2. Step 2: List task lists to fetch IDs using GOOGLETASKS_LIST_TASK_LISTS
  3. Step 3: Create a task with GOOGLETASKS_INSERT_TASK or bulk insert using GOOGLETASKS_BULK_INSERT_TASKS

Best Practices

  • Always start by listing task lists to obtain IDs (GOOGLETASKS_LIST_TASK_LISTS) before creating or updating tasks
  • Use GOOGLETASKS_BULK_INSERT_TASKS for bulk creation and set an appropriate batch_size
  • Ensure the Rube MCP connection is ACTIVE via RUBE_MANAGE_CONNECTIONS before any workflow
  • Format due dates using RFC3339 and validate with GOOGLETASKS_INSERT_TASK or GOOGLETASKS_UPDATE_TASK
  • Use status values needsAction or completed to reflect task state and confirm updates with GOOGLETASKS_LIST_ALL_TASKS

Example Use Cases

  • Create a new task with title and due date in a specific task list
  • Bulk insert 20 tasks into a project task list to plan a sprint
  • Create subtasks by specifying task_parent for hierarchical tasks
  • List all tasks across lists to generate a status report
  • Clear all completed tasks from a list to declutter your workspace

Frequently Asked Questions

Add this skill to your agents
Sponsor this space

Reach thousands of developers