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: 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.
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
1---2name: google-tasks3description: 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.4---5# Google Tasks67## Freshness8Last updated: `2026-06-24`.910If 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.1112## What This Tool Does13Complete 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.1415## Product Instructions16### Google Tasks1718Manage task lists and tasks in Google Tasks. Create, update, complete, search, and organize tasks across multiple lists.1920#### Task List Actions2122##### list_tasklists23List all task lists in the user's account.2425- **Optional:** `max_results` (integer, 1-100, default 100), `page_token` (string)2627```json28{"action": "list_tasklists"}29```3031##### get_tasklist32Get details of a specific task list.3334- **Required:** `tasklist_id` (string)3536```json37{"action": "get_tasklist", "tasklist_id": "MDk3NTEwMjQ2MzM"}38```3940##### create_tasklist41Create a new task list.4243- **Required:** `tasklist_title` (string) — also accepts `title`4445```json46{"action": "create_tasklist", "tasklist_title": "Shopping List"}47```4849##### update_tasklist50Fully update a task list (replaces existing data).5152- **Required:** `tasklist_id` (string), `tasklist_title` (string) — also accepts `title`5354```json55{"action": "update_tasklist", "tasklist_id": "MDk3NTEwMjQ2MzM", "tasklist_title": "Grocery List"}56```5758##### patch_tasklist59Partially update a task list title.6061- **Required:** `tasklist_id` (string), `tasklist_title` (string) — also accepts `title`6263```json64{"action": "patch_tasklist", "tasklist_id": "MDk3NTEwMjQ2MzM", "tasklist_title": "Renamed List"}65```6667##### delete_tasklist68Delete a task list.6970- **Required:** `tasklist_id` (string)7172```json73{"action": "delete_tasklist", "tasklist_id": "MDk3NTEwMjQ2MzM"}74```7576#### Task Actions7778##### list_tasks79List tasks in a specific task list.8081- **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)8283```json84{"action": "list_tasks", "tasklist_id": "@default", "show_completed": false}85```8687##### get_task88Get details of a specific task.8990- **Required:** `task_id` (string)91- **Optional:** `tasklist_id` (string, defaults to `@default`)9293```json94{"action": "get_task", "task_id": "abc123", "tasklist_id": "@default"}95```9697##### create_task98Create a new task.99100- **Required:** `title` (string)101- **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)102103```json104{"action": "create_task", "title": "Buy groceries", "notes": "Milk, eggs, bread", "due": "2026-03-15"}105```106107Creating a subtask:108```json109{"action": "create_task", "title": "Buy milk", "parent": "parentTaskId123"}110```111112##### update_task113Fully update a task (merges with existing data).114115- **Required:** `task_id` (string)116- **Optional:** `tasklist_id` (string, defaults to `@default`), `title` (string), `notes` (string), `due` (ISO 8601 date), `status` ("needsAction" or "completed")117118```json119{"action": "update_task", "task_id": "abc123", "title": "Updated title", "notes": "New notes", "due": "2026-03-20"}120```121122##### patch_task123Partially update specific fields of a task.124125- **Required:** `task_id` (string)126- **Optional:** `tasklist_id` (string, defaults to `@default`), `title` (string), `notes` (string), `due` (ISO 8601 date), `status` ("needsAction" or "completed")127128```json129{"action": "patch_task", "task_id": "abc123", "notes": "Updated notes only"}130```131132##### delete_task133Delete a task.134135- **Required:** `task_id` (string)136- **Optional:** `tasklist_id` (string, defaults to `@default`)137138```json139{"action": "delete_task", "task_id": "abc123"}140```141142##### move_task143Move a task within a list (reorder or nest under a parent).144145- **Required:** `task_id` (string)146- **Optional:** `tasklist_id` (string, defaults to `@default`), `parent` (task ID to nest under), `previous` (task ID to position after)147148```json149{"action": "move_task", "task_id": "abc123", "parent": "parentTaskId456"}150```151152##### complete_task153Mark a task as completed.154155- **Required:** `task_id` (string)156- **Optional:** `tasklist_id` (string, defaults to `@default`)157158```json159{"action": "complete_task", "task_id": "abc123"}160```161162##### uncomplete_task163Mark a completed task as incomplete.164165- **Required:** `task_id` (string)166- **Optional:** `tasklist_id` (string, defaults to `@default`)167168```json169{"action": "uncomplete_task", "task_id": "abc123"}170```171172##### clear_completed173Remove all completed tasks from a list.174175- **Optional:** `tasklist_id` (string, defaults to `@default`)176177```json178{"action": "clear_completed", "tasklist_id": "@default"}179```180181#### Bulk and Search Actions182183##### batch_create_tasks184Create multiple tasks at once.185186- **Required:** `tasks` (array of task objects, each with `title`; optional `notes`, `due`, `status`, `parent`, `previous`)187- **Optional:** `tasklist_id` (string, defaults to `@default`)188189```json190{191 "action": "batch_create_tasks",192 "tasklist_id": "@default",193 "tasks": [194 {"title": "Task 1", "due": "2026-03-15"},195 {"title": "Task 2", "notes": "Details here"},196 {"title": "Task 3", "due": "2026-03-20", "status": "needsAction"}197 ]198}199```200201##### get_all_tasks202Retrieve all tasks across all task lists.203204- **Optional:** `show_completed` (boolean, default true), `show_deleted` (boolean, default false), `show_hidden` (boolean, default false)205206```json207{"action": "get_all_tasks", "show_completed": false}208```209210##### search_tasks211Search for tasks by keyword across all task lists. Matches against task titles and notes.212213- **Required:** `search_query` (string)214- **Optional:** `show_completed` (boolean, default true)215216```json217{"action": "search_tasks", "search_query": "groceries"}218```219220#### Common Workflows2212221. **Quick task creation:** Use `create_task` with just `title` to add to the default list.2232. **Project setup:** Use `create_tasklist` then `batch_create_tasks` to set up a project with multiple tasks.2243. **Daily review:** Use `list_tasks` with `show_completed: false` to see pending items, or `get_all_tasks` for a full overview.2254. **Find a task:** Use `search_tasks` to locate tasks by keyword across all lists.2265. **Task completion:** Use `complete_task` / `uncomplete_task` for simple status toggling.2276. **Cleanup:** Use `clear_completed` to remove finished tasks from a list.228229#### Important Notes230231- Use `@default` for `tasklist_id` to target the user's primary task list. If omitted, most task actions default to `@default`.232- Due dates accept `YYYY-MM-DD` or full ISO 8601 format (`YYYY-MM-DDTHH:MM:SSZ`).233- Filter timestamps (`updated_min`, `completed_min`, `completed_max`, `due_min`, `due_max`) use RFC 3339 format.234- Task status values are `needsAction` (incomplete) or `completed`.235- Use `patch_task` to update only specific fields without affecting others. Use `update_task` for full replacements.236- The `parent` parameter creates subtasks; `previous` controls ordering within the list.237- Pagination: use `page_token` from the response's `next_page_token` to fetch additional pages.238239## When To Use240- Use this skill for `Google Tasks` on AgentPMT.241- Use it when an agent needs this specific tool's behavior, schema, inputs, outputs, and invocation shape.242- Search and activation keywords: google tasks, task management automation, todo list synchronization, project task tracking, deadline monitoring, batch create tasks, tasks, tasklist id.243- 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`.244245## Use Cases246- task management automation247- todo list synchronization248- project task tracking249- deadline monitoring250- task completion reporting251- productivity workflow integration252- calendar task integration253- team task distribution254- recurring task management255- task prioritization256257## Categories And Industries258No categories or industry tags are published for this tool.259260## Actions And Schema261Complete generated action schema: `./schema.md`.262Supported action count: `19`.263x402 availability: not enabled for this product.264265- `batch_create_tasks` (action slug: `batch-create-tasks`): Create multiple tasks at once in a task list. Price: `5` credits. Parameters: `tasklist_id`, `tasks`.266- `clear_completed` (action slug: `clear-completed`): Remove all completed tasks from a task list. Price: `5` credits. Parameters: `tasklist_id`.267- `complete_task` (action slug: `complete-task`): Mark a task as completed. Price: `5` credits. Parameters: `task_id`, `tasklist_id`.268- `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`.269- `create_tasklist` (action slug: `create-tasklist`): Create a new task list. Price: `5` credits. Parameters: `tasklist_title`.270- `delete_task` (action slug: `delete-task`): Delete a task. Price: `5` credits. Parameters: `task_id`, `tasklist_id`.271- `delete_tasklist` (action slug: `delete-tasklist`): Delete a task list. Price: `5` credits. Parameters: `tasklist_id`.272- `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`.273- `get_task` (action slug: `get-task`): Get details of a specific task. Price: `5` credits. Parameters: `task_id`, `tasklist_id`.274- `get_tasklist` (action slug: `get-tasklist`): Get details of a specific task list. Price: `5` credits. Parameters: `tasklist_id`.275- `list_tasklists` (action slug: `list-tasklists`): List all task lists in the user's account. Price: `5` credits. Parameters: `max_results`, `page_token`.276- `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.277- `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`.278- `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`.279- `patch_tasklist` (action slug: `patch-tasklist`): Partially update a task list title. Price: `5` credits. Parameters: `tasklist_id`, `tasklist_title`.280- `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`.281- `uncomplete_task` (action slug: `uncomplete-task`): Mark a completed task as incomplete. Price: `5` credits. Parameters: `task_id`, `tasklist_id`.282- `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`.283- `update_tasklist` (action slug: `update-tasklist`): Fully update a task list (replaces existing data). Price: `5` credits. Parameters: `tasklist_id`, `tasklist_title`.284285## Live Schema And Examples286Use 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.287288- Exact schema: call `agentpmt-tool-search-and-execution` with `action: "get_schema"`, and `tool_id: "google-tasks"`.289- 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.290- Treat returned live schema and instructions as more specific than this generated summary.291292MCP schema lookup through the main AgentPMT MCP server:293294```json295{296 "method": "tools/call",297 "params": {298 "name": "AgentPMT-Tool-Search-and-Execution",299 "arguments": {300 "action": "get_schema",301 "tool_id": "google-tasks"302 }303 }304}305```306307For live examples, keep the same MCP tool and use these arguments:308309```json310{311 "action": "get_instructions",312 "tool_id": "google-tasks"313}314```315316Authenticated AgentPMT REST schema lookup body:317318```json319{320 "name": "agentpmt-tool-search-and-execution",321 "parameters": {322 "action": "get_schema",323 "tool_id": "google-tasks"324 }325}326```327328Authenticated AgentPMT REST live examples body:329330```json331{332 "name": "agentpmt-tool-search-and-execution",333 "parameters": {334 "action": "get_instructions",335 "tool_id": "google-tasks"336 }337}338```339340## Call This Tool341Product slug: `google-tasks`342343Marketplace page: https://www.agentpmt.com/marketplace/google-tasks344345- 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.346- x402 route: not enabled for this product.347- AgentPMT overview: use `../what-is-agentpmt` for marketplace, Agent Group, workflow, MCP, REST, and payment concepts.348349If those setup skills are not installed beside this product skill, use the downloads below.350351Core AgentPMT setup skills:352- What AgentPMT is: ../what-is-agentpmt353 - ClawHub page: https://clawhub.ai/agentpmt/what-is-agentpmt354 - OpenClaw install: `openclaw skills install what-is-agentpmt`355 - skills.sh install: `npx skills add AgentPMT/agent-skills --skill what-is-agentpmt`356- AgentPMT account MCP/REST setup: ../agentpmt-account-mcp-rest-api-setup357 - ClawHub page: https://clawhub.ai/agentpmt/agentpmt-account-mcp-rest-api-setup358 - OpenClaw install: `openclaw skills install agentpmt-account-mcp-rest-api-setup`359 - skills.sh install: `npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup`360361skills.sh install script:362363```bash364npx skills add AgentPMT/agent-skills --skill what-is-agentpmt365npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup366```367368MCP call shape after the main AgentPMT MCP server is connected:369370```json371{372 "method": "tools/call",373 "params": {374 "name": "Google-Tasks",375 "arguments": {376 "action": "batch_create_tasks",377 "tasklist_id": "example tasklist id",378 "tasks": [379 {380 "due": "example due",381 "notes": "example notes",382 "parent": "example parent",383 "previous": "example previous",384 "status": "needsAction",385 "title": "example title"386 }387 ]388 }389 }390}391```392393Use the exact tool name returned by `tools/list`; the name above is the expected readable form.394395Authenticated AgentPMT REST call body:396397```json398{399 "name": "google-tasks",400 "parameters": {401 "action": "batch_create_tasks",402 "tasklist_id": "example tasklist id",403 "tasks": [404 {405 "due": "example due",406 "notes": "example notes",407 "parent": "example parent",408 "previous": "example previous",409 "status": "needsAction",410 "title": "example title"411 }412 ]413 }414}415```416417Use the setup skill for the account connection details before making REST calls.418419## Response Handling420- Treat the returned JSON as the source of truth for this tool call.421- If the response includes warnings or correction targets, apply them before retrying.422- If the response includes a `passed` or success-style boolean, use it as the workflow gate.423- If validation fails or the response shape is unclear, call `get_schema` or `get_instructions` before retrying.424- If `batch_create_tasks` fails, preserve the request parameters and retry only after fixing schema, auth, or payment errors.425426## Security427- Do not place account secrets, wallet private keys, mnemonics, signatures, or payment headers in prompts or logs.428- Keep tool inputs scoped to the minimum content needed for the task.429- Use the setup skills for credential handling; this product skill only defines product-specific behavior.430431## AgentPMT Reference432- What AgentPMT is: ../what-is-agentpmt (ClawHub: `what-is-agentpmt`, page: https://clawhub.ai/agentpmt/what-is-agentpmt; skills.sh: `npx skills add AgentPMT/agent-skills --skill what-is-agentpmt`)433- AgentPMT account MCP/REST setup: ../agentpmt-account-mcp-rest-api-setup (ClawHub: `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`)434- Marketplace product: https://www.agentpmt.com/marketplace/google-tasks435- AgentPMT main MCP server: https://api.agentpmt.com/mcp/436- AgentPMT REST invoke endpoint: https://api.agentpmt.com/products/purchase