Install
openclaw skills install @agentpmt/google-tasksGoogle Tasks: create, read, update, delete tasks and lists. Due dates, notes, subtasks, completion tracking. Batch operations and filtering. Use when an agent needs google tasks, task management automation, todo list synchronization, project task tracking, deadline monitoring, batch create tasks, tasks, tasklist id through AgentPMT-hosted remote tool calls. Discovery terms: google tasks, task management automation, todo list synchronization, project task tracking, deadline monitoring.
openclaw skills install @agentpmt/google-tasksLast updated: 2026-06-24.
If the current date is more than 7 days after the last updated date, reinstall this skill from skills.sh or ClawHub before relying on endpoints, schemas, setup steps, or examples.
Complete Google Tasks management tool enabling AI agents to create read update and delete tasks and task lists. Supports task organization with due dates notes subtasks and completion tracking. Includes batch operations for efficient task management and advanced filtering options for retrieving tasks by date ranges and completion status. Perfect for task automation todo list synchronization project tracking and productivity workflow integration.
Manage task lists and tasks in Google Tasks. Create, update, complete, search, and organize tasks across multiple lists.
List all task lists in the user's account.
max_results (integer, 1-100, default 100), page_token (string){"action": "list_tasklists"}
Get details of a specific task list.
tasklist_id (string){"action": "get_tasklist", "tasklist_id": "MDk3NTEwMjQ2MzM"}
Create a new task list.
tasklist_title (string) — also accepts title{"action": "create_tasklist", "tasklist_title": "Shopping List"}
Fully update a task list (replaces existing data).
tasklist_id (string), tasklist_title (string) — also accepts title{"action": "update_tasklist", "tasklist_id": "MDk3NTEwMjQ2MzM", "tasklist_title": "Grocery List"}
Partially update a task list title.
tasklist_id (string), tasklist_title (string) — also accepts title{"action": "patch_tasklist", "tasklist_id": "MDk3NTEwMjQ2MzM", "tasklist_title": "Renamed List"}
Delete a task list.
tasklist_id (string){"action": "delete_tasklist", "tasklist_id": "MDk3NTEwMjQ2MzM"}
List tasks in a specific task list.
tasklist_id (string, defaults to primary list @default), max_results (integer, 1-100, default 100), page_token (string), show_completed (boolean, default true), show_deleted (boolean, default false), show_hidden (boolean, default false), updated_min (RFC 3339 timestamp), completed_min (RFC 3339 timestamp), completed_max (RFC 3339 timestamp), due_min (RFC 3339 timestamp), due_max (RFC 3339 timestamp){"action": "list_tasks", "tasklist_id": "@default", "show_completed": false}
Get details of a specific task.
task_id (string)tasklist_id (string, defaults to @default){"action": "get_task", "task_id": "abc123", "tasklist_id": "@default"}
Create a new task.
title (string)tasklist_id (string, defaults to @default), notes (string), due (ISO 8601 date: YYYY-MM-DD or YYYY-MM-DDTHH:MM:SSZ), status ("needsAction" or "completed"), parent (task ID to create as subtask), previous (task ID for positioning){"action": "create_task", "title": "Buy groceries", "notes": "Milk, eggs, bread", "due": "2026-03-15"}
Creating a subtask:
{"action": "create_task", "title": "Buy milk", "parent": "parentTaskId123"}
Fully update a task (merges with existing data).
task_id (string)tasklist_id (string, defaults to @default), title (string), notes (string), due (ISO 8601 date), status ("needsAction" or "completed"){"action": "update_task", "task_id": "abc123", "title": "Updated title", "notes": "New notes", "due": "2026-03-20"}
Partially update specific fields of a task.
task_id (string)tasklist_id (string, defaults to @default), title (string), notes (string), due (ISO 8601 date), status ("needsAction" or "completed"){"action": "patch_task", "task_id": "abc123", "notes": "Updated notes only"}
Delete a task.
task_id (string)tasklist_id (string, defaults to @default){"action": "delete_task", "task_id": "abc123"}
Move a task within a list (reorder or nest under a parent).
task_id (string)tasklist_id (string, defaults to @default), parent (task ID to nest under), previous (task ID to position after){"action": "move_task", "task_id": "abc123", "parent": "parentTaskId456"}
Mark a task as completed.
task_id (string)tasklist_id (string, defaults to @default){"action": "complete_task", "task_id": "abc123"}
Mark a completed task as incomplete.
task_id (string)tasklist_id (string, defaults to @default){"action": "uncomplete_task", "task_id": "abc123"}
Remove all completed tasks from a list.
tasklist_id (string, defaults to @default){"action": "clear_completed", "tasklist_id": "@default"}
Create multiple tasks at once.
tasks (array of task objects, each with title; optional notes, due, status, parent, previous)tasklist_id (string, defaults to @default){
"action": "batch_create_tasks",
"tasklist_id": "@default",
"tasks": [
{"title": "Task 1", "due": "2026-03-15"},
{"title": "Task 2", "notes": "Details here"},
{"title": "Task 3", "due": "2026-03-20", "status": "needsAction"}
]
}
Retrieve all tasks across all task lists.
show_completed (boolean, default true), show_deleted (boolean, default false), show_hidden (boolean, default false){"action": "get_all_tasks", "show_completed": false}
Search for tasks by keyword across all task lists. Matches against task titles and notes.
search_query (string)show_completed (boolean, default true){"action": "search_tasks", "search_query": "groceries"}
create_task with just title to add to the default list.create_tasklist then batch_create_tasks to set up a project with multiple tasks.list_tasks with show_completed: false to see pending items, or get_all_tasks for a full overview.search_tasks to locate tasks by keyword across all lists.complete_task / uncomplete_task for simple status toggling.clear_completed to remove finished tasks from a list.@default for tasklist_id to target the user's primary task list. If omitted, most task actions default to @default.YYYY-MM-DD or full ISO 8601 format (YYYY-MM-DDTHH:MM:SSZ).updated_min, completed_min, completed_max, due_min, due_max) use RFC 3339 format.needsAction (incomplete) or completed.patch_task to update only specific fields without affecting others. Use update_task for full replacements.parent parameter creates subtasks; previous controls ordering within the list.page_token from the response's next_page_token to fetch additional pages.Google Tasks on AgentPMT.batch_create_tasks, clear_completed, complete_task, create_task, create_tasklist, delete_task, delete_tasklist, get_all_tasks, get_task, get_tasklist, list_tasklists, list_tasks, move_task, patch_task, patch_tasklist, search_tasks, uncomplete_task, update_task, update_tasklist.No categories or industry tags are published for this tool.
Complete generated action schema: ./schema.md.
Supported action count: 19.
x402 availability: not enabled for this product.
batch_create_tasks (action slug: batch-create-tasks): Create multiple tasks at once in a task list. Price: 5 credits. Parameters: tasklist_id, tasks.clear_completed (action slug: clear-completed): Remove all completed tasks from a task list. Price: 5 credits. Parameters: tasklist_id.complete_task (action slug: complete-task): Mark a task as completed. Price: 5 credits. Parameters: task_id, tasklist_id.create_task (action slug: create-task): Create a new task in a task list. Price: 5 credits. Parameters: due, notes, parent, previous, status, tasklist_id, title.create_tasklist (action slug: create-tasklist): Create a new task list. Price: 5 credits. Parameters: tasklist_title.delete_task (action slug: delete-task): Delete a task. Price: 5 credits. Parameters: task_id, tasklist_id.delete_tasklist (action slug: delete-tasklist): Delete a task list. Price: 5 credits. Parameters: tasklist_id.get_all_tasks (action slug: get-all-tasks): Retrieve all tasks across all task lists. Price: 5 credits. Parameters: show_completed, show_deleted, show_hidden.get_task (action slug: get-task): Get details of a specific task. Price: 5 credits. Parameters: task_id, tasklist_id.get_tasklist (action slug: get-tasklist): Get details of a specific task list. Price: 5 credits. Parameters: tasklist_id.list_tasklists (action slug: list-tasklists): List all task lists in the user's account. Price: 5 credits. Parameters: max_results, page_token.list_tasks (action slug: list-tasks): List tasks in a specific task list. Price: 5 credits. Parameters: completed_max, completed_min, due_max, due_min, max_results, page_token, show_completed, show_deleted, plus 3 more.move_task (action slug: move-task): Move a task within a list (reorder or nest under a parent). Price: 5 credits. Parameters: parent, previous, task_id, tasklist_id.patch_task (action slug: patch-task): Partially update specific fields of a task. Price: 5 credits. Parameters: due, notes, status, task_id, tasklist_id, title.patch_tasklist (action slug: patch-tasklist): Partially update a task list title. Price: 5 credits. Parameters: tasklist_id, tasklist_title.search_tasks (action slug: search-tasks): Search for tasks by keyword across all task lists. Matches against task titles and notes. Price: 5 credits. Parameters: search_query, show_completed.uncomplete_task (action slug: uncomplete-task): Mark a completed task as incomplete. Price: 5 credits. Parameters: task_id, tasklist_id.update_task (action slug: update-task): Fully update a task (merges with existing data). Price: 5 credits. Parameters: due, notes, status, task_id, tasklist_id, title.update_tasklist (action slug: update-tasklist): Fully update a task list (replaces existing data). Price: 5 credits. Parameters: tasklist_id, tasklist_title.Use the compact schema above for ordinary calls. Before a new production integration, or whenever parameters, enum values, nested objects, outputs, or examples are unclear, fetch live details first.
agentpmt-tool-search-and-execution with action: "get_schema", and tool_id: "google-tasks".agentpmt-tool-search-and-execution with action: "get_instructions" and tool_id: "google-tasks", or call this product with action: "get_instructions" when the product tool is already selected.MCP schema lookup through the main AgentPMT MCP server:
{
"method": "tools/call",
"params": {
"name": "AgentPMT-Tool-Search-and-Execution",
"arguments": {
"action": "get_schema",
"tool_id": "google-tasks"
}
}
}
For live examples, keep the same MCP tool and use these arguments:
{
"action": "get_instructions",
"tool_id": "google-tasks"
}
Authenticated AgentPMT REST schema lookup body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_schema",
"tool_id": "google-tasks"
}
}
Authenticated AgentPMT REST live examples body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_instructions",
"tool_id": "google-tasks"
}
}
Product slug: google-tasks
Marketplace page: https://www.agentpmt.com/marketplace/google-tasks
../agentpmt-account-mcp-rest-api-setup to connect the main MCP server or REST API for an Agent Group where this tool is enabled.../what-is-agentpmt for marketplace, Agent Group, workflow, MCP, REST, and payment concepts.If those setup skills are not installed beside this product skill, use the downloads below.
Core AgentPMT setup skills:
openclaw skills install what-is-agentpmtnpx skills add AgentPMT/agent-skills --skill what-is-agentpmtopenclaw skills install agentpmt-account-mcp-rest-api-setupnpx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setupskills.sh install script:
npx skills add AgentPMT/agent-skills --skill what-is-agentpmt
npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup
MCP call shape after the main AgentPMT MCP server is connected:
{
"method": "tools/call",
"params": {
"name": "Google-Tasks",
"arguments": {
"action": "batch_create_tasks",
"tasklist_id": "example tasklist id",
"tasks": [
{
"due": "example due",
"notes": "example notes",
"parent": "example parent",
"previous": "example previous",
"status": "needsAction",
"title": "example title"
}
]
}
}
}
Use the exact tool name returned by tools/list; the name above is the expected readable form.
Authenticated AgentPMT REST call body:
{
"name": "google-tasks",
"parameters": {
"action": "batch_create_tasks",
"tasklist_id": "example tasklist id",
"tasks": [
{
"due": "example due",
"notes": "example notes",
"parent": "example parent",
"previous": "example previous",
"status": "needsAction",
"title": "example title"
}
]
}
}
Use the setup skill for the account connection details before making REST calls.
passed or success-style boolean, use it as the workflow gate.get_schema or get_instructions before retrying.batch_create_tasks fails, preserve the request parameters and retry only after fixing schema, auth, or payment errors.what-is-agentpmt, page: https://clawhub.ai/agentpmt/what-is-agentpmt; skills.sh: npx skills add AgentPMT/agent-skills --skill what-is-agentpmt)agentpmt-account-mcp-rest-api-setup, page: https://clawhub.ai/agentpmt/agentpmt-account-mcp-rest-api-setup; skills.sh: npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup)