| name | google-tasks |
| description | Google 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. |
| version | 1.0.0 |
| homepage | https://www.agentpmt.com/marketplace/google-tasks |
| compatibility | Agent instructions for AgentPMT-hosted remote tool calls. Follow this skill body for supported account, wallet, and setup routes. No local command runtime is declared. |
| metadata | {"author":"agentpmt","openclaw":{"homepage":"https://www.agentpmt.com/marketplace/google-tasks"}} |
Google Tasks
Freshness
Last 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.
What This Tool Does
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.
Product Instructions
Google Tasks
Manage task lists and tasks in Google Tasks. Create, update, complete, search, and organize tasks across multiple lists.
Task List Actions
list_tasklists
List all task lists in the user's account.
- Optional:
max_results (integer, 1-100, default 100), page_token (string)
{"action": "list_tasklists"}
get_tasklist
Get details of a specific task list.
- Required:
tasklist_id (string)
{"action": "get_tasklist", "tasklist_id": "MDk3NTEwMjQ2MzM"}
create_tasklist
Create a new task list.
- Required:
tasklist_title (string) — also accepts title
{"action": "create_tasklist", "tasklist_title": "Shopping List"}
update_tasklist
Fully update a task list (replaces existing data).
- Required:
tasklist_id (string), tasklist_title (string) — also accepts title
{"action": "update_tasklist", "tasklist_id": "MDk3NTEwMjQ2MzM", "tasklist_title": "Grocery List"}
patch_tasklist
Partially update a task list title.
- Required:
tasklist_id (string), tasklist_title (string) — also accepts title
{"action": "patch_tasklist", "tasklist_id": "MDk3NTEwMjQ2MzM", "tasklist_title": "Renamed List"}
delete_tasklist
Delete a task list.
- Required:
tasklist_id (string)
{"action": "delete_tasklist", "tasklist_id": "MDk3NTEwMjQ2MzM"}
Task Actions
list_tasks
List tasks in a specific task list.
- Optional:
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_task
Get details of a specific task.
- Required:
task_id (string)
- Optional:
tasklist_id (string, defaults to @default)
{"action": "get_task", "task_id": "abc123", "tasklist_id": "@default"}
create_task
Create a new task.
- Required:
title (string)
- Optional:
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"}
update_task
Fully update a task (merges with existing data).
- Required:
task_id (string)
- Optional:
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"}
patch_task
Partially update specific fields of a task.
- Required:
task_id (string)
- Optional:
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_task
Delete a task.
- Required:
task_id (string)
- Optional:
tasklist_id (string, defaults to @default)
{"action": "delete_task", "task_id": "abc123"}
move_task
Move a task within a list (reorder or nest under a parent).
- Required:
task_id (string)
- Optional:
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"}
complete_task
Mark a task as completed.
- Required:
task_id (string)
- Optional:
tasklist_id (string, defaults to @default)
{"action": "complete_task", "task_id": "abc123"}
uncomplete_task
Mark a completed task as incomplete.
- Required:
task_id (string)
- Optional:
tasklist_id (string, defaults to @default)
{"action": "uncomplete_task", "task_id": "abc123"}
clear_completed
Remove all completed tasks from a list.
- Optional:
tasklist_id (string, defaults to @default)
{"action": "clear_completed", "tasklist_id": "@default"}
Bulk and Search Actions
batch_create_tasks
Create multiple tasks at once.
- Required:
tasks (array of task objects, each with title; optional notes, due, status, parent, previous)
- Optional:
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"}
]
}
get_all_tasks
Retrieve all tasks across all task lists.
- Optional:
show_completed (boolean, default true), show_deleted (boolean, default false), show_hidden (boolean, default false)
{"action": "get_all_tasks", "show_completed": false}
search_tasks
Search for tasks by keyword across all task lists. Matches against task titles and notes.
- Required:
search_query (string)
- Optional:
show_completed (boolean, default true)
{"action": "search_tasks", "search_query": "groceries"}
Common Workflows
- Quick task creation: Use
create_task with just title to add to the default list.
- Project setup: Use
create_tasklist then batch_create_tasks to set up a project with multiple tasks.
- Daily review: Use
list_tasks with show_completed: false to see pending items, or get_all_tasks for a full overview.
- Find a task: Use
search_tasks to locate tasks by keyword across all lists.
- Task completion: Use
complete_task / uncomplete_task for simple status toggling.
- Cleanup: Use
clear_completed to remove finished tasks from a list.
Important Notes
- Use
@default for tasklist_id to target the user's primary task list. If omitted, most task actions default to @default.
- Due dates accept
YYYY-MM-DD or full ISO 8601 format (YYYY-MM-DDTHH:MM:SSZ).
- Filter timestamps (
updated_min, completed_min, completed_max, due_min, due_max) use RFC 3339 format.
- Task status values are
needsAction (incomplete) or completed.
- Use
patch_task to update only specific fields without affecting others. Use update_task for full replacements.
- The
parent parameter creates subtasks; previous controls ordering within the list.
- Pagination: use
page_token from the response's next_page_token to fetch additional pages.
When To Use
- Use this skill for
Google Tasks on AgentPMT.
- Use it when an agent needs this specific tool's behavior, schema, inputs, outputs, and invocation shape.
- Search and activation keywords: google tasks, task management automation, todo list synchronization, project task tracking, deadline monitoring, batch create tasks, tasks, tasklist id.
- Supported action names:
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.
Use Cases
- task management automation
- todo list synchronization
- project task tracking
- deadline monitoring
- task completion reporting
- productivity workflow integration
- calendar task integration
- team task distribution
- recurring task management
- task prioritization
Categories And Industries
No categories or industry tags are published for this tool.
Actions And Schema
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: .
Live Schema And Examples
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.
- Exact schema: call
agentpmt-tool-search-and-execution with action: "get_schema", and tool_id: "google-tasks".
- Detailed examples: call
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.
- Treat returned live schema and instructions as more specific than this generated summary.
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"
}
}
Call This Tool
Product slug: google-tasks
Marketplace page: https://www.agentpmt.com/marketplace/google-tasks
- AgentPMT account route: first use
../agentpmt-account-mcp-rest-api-setup to connect the main MCP server or REST API for an Agent Group where this tool is enabled.
- x402 route: not enabled for this product.
- AgentPMT overview: use
../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:
- What AgentPMT is: ../what-is-agentpmt
- AgentPMT account MCP/REST setup: ../agentpmt-account-mcp-rest-api-setup
skills.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.
Response Handling
- Treat the returned JSON as the source of truth for this tool call.
- If the response includes warnings or correction targets, apply them before retrying.
- If the response includes a
passed or success-style boolean, use it as the workflow gate.
- If validation fails or the response shape is unclear, call
get_schema or get_instructions before retrying.
- If
batch_create_tasks fails, preserve the request parameters and retry only after fixing schema, auth, or payment errors.
Security
- Do not place account secrets, wallet private keys, mnemonics, signatures, or payment headers in prompts or logs.
- Keep tool inputs scoped to the minimum content needed for the task.
- Use the setup skills for credential handling; this product skill only defines product-specific behavior.
AgentPMT Reference