googletasks-automation
Automate Google Tasks via Rube MCP (Composio): create, list, update, delete, move, and bulk-insert tasks and task lists. Always search tools first for current schemas.
Best use case
googletasks-automation is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Automate Google Tasks via Rube MCP (Composio): create, list, update, delete, move, and bulk-insert tasks and task lists. Always search tools first for current schemas.
Teams using googletasks-automation should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/googletasks-automation/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How googletasks-automation Compares
| Feature / Agent | googletasks-automation | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Automate Google Tasks via Rube MCP (Composio): create, list, update, delete, move, and bulk-insert tasks and task lists. Always search tools first for current schemas.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
SKILL.md Source
# 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](https://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 | Action | Tool | Key Parameters | |--------|------|----------------| | List task lists | `GOOGLETASKS_LIST_TASK_LISTS` | `maxResults`, `pageToken` | | List all tasks | `GOOGLETASKS_LIST_ALL_TASKS` | `max_tasks_total`, `showCompleted`, `dueMin` | | List tasks in a list | `GOOGLETASKS_LIST_TASKS` | `tasklist_id`, `maxResults`, `showCompleted` | | Get single task | `GOOGLETASKS_GET_TASK` | `tasklist_id`, `task_id` | | Create task | `GOOGLETASKS_INSERT_TASK` | `tasklist_id`, `title`, `notes`, `due` | | Bulk create tasks | `GOOGLETASKS_BULK_INSERT_TASKS` | `tasklist_id`, `tasks` | | Update task | `GOOGLETASKS_UPDATE_TASK` | `tasklist_id`, `task_id`, `title`, `status` | | Delete task | `GOOGLETASKS_DELETE_TASK` | `tasklist_id`, `task_id` | | Move/reorder task | `GOOGLETASKS_MOVE_TASK` | `tasklist_id`, `task_id` | | Clear completed | `GOOGLETASKS_CLEAR_TASKS` | `tasklist` | --- *Powered by [Composio](https://composio.dev)*
Related Skills
google-sheets-automation
Google Sheets Automation - Auto-activating skill for Business Automation. Triggers on: google sheets automation, google sheets automation Part of the Business Automation skill category.
playwright-automation-fill-in-form
Automate filling in a form using Playwright MCP
deployment-automation
Automate application deployment to cloud platforms and servers. Use when setting up CI/CD pipelines, deploying to Docker/Kubernetes, or configuring cloud infrastructure. Handles GitHub Actions, Docker, Kubernetes, AWS, Vercel, and deployment best practices.
zoom-automation
Automate Zoom meeting creation, management, recordings, webinars, and participant tracking via Rube MCP (Composio). Always search tools first for current schemas.
zoho-crm-automation
Automate Zoho CRM tasks via Rube MCP (Composio): create/update records, search contacts, manage leads, and convert leads. Always search tools first for current schemas.
zendesk-automation
Automate Zendesk tasks via Rube MCP (Composio): tickets, users, organizations, replies. Always search tools first for current schemas.
youtube-automation
Automate YouTube tasks via Rube MCP (Composio): upload videos, manage playlists, search content, get analytics, and handle comments. Always search tools first for current schemas.
wrike-automation
Automate Wrike project management via Rube MCP (Composio): create tasks/folders, manage projects, assign work, and track progress. Always search tools first for current schemas.
workflow-automation
Workflow automation is the infrastructure that makes AI agents reliable. Without durable execution, a network hiccup during a 10-step payment flow means lost money and angry customers. With it, workflows resume exactly where they left off. This skill covers the platforms (n8n, Temporal, Inngest) and patterns (sequential, parallel, orchestrator-worker) that turn brittle scripts into production-grade automation. Key insight: The platforms make different tradeoffs. n8n optimizes for accessibility
whatsapp-automation
Automate WhatsApp Business tasks via Rube MCP (Composio): send messages, manage templates, upload media, and handle contacts. Always search tools first for current schemas.
webflow-automation
Automate Webflow CMS collections, site publishing, page management, asset uploads, and ecommerce orders via Rube MCP (Composio). Always search tools first for current schemas.
vercel-automation
Automate Vercel tasks via Rube MCP (Composio): manage deployments, domains, DNS, env vars, projects, and teams. Always search tools first for current schemas.