productivity
Google Tasks MCP, CLI, and Lua Integration for AI Agents
Google Tasks integration docs for AI agents: MCP gateway setup, Google Tasks CLI commands, Lua API reference, credentials, and function schemas.
7 functions 5 read 2 write Manual OAuth token auth
Google Tasks for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Machine-Readable Metadata
- integration_slug
google-tasks- route_slug
google-tasks- package
google-tasks- auth_strategy
oauth2_manual_tokenManual OAuth token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Google Tasks CLIHeadless setup and direct function calls. Google Tasks MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Google Tasks MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Google Tasks.
Claude Code Google Tasks MCP setup for Claude Code. Cursor Google Tasks MCP setup for Cursor. Codex Google Tasks MCP setup for Codex. OpenAI Agents Google Tasks MCP setup for OpenAI Agents SDK. Claude Agent SDK Google Tasks MCP setup for Claude Agent SDK. Vercel AI SDK Google Tasks MCP setup for Vercel AI SDK. LangChain Google Tasks MCP setup for LangChain. LangGraph Google Tasks MCP setup for LangGraph. CrewAI Google Tasks MCP setup for CrewAI. MCP clients Google Tasks MCP setup for Generic MCP Clients.
Google Tasks CLI Matrix
Use these pages for direct Google Tasks CLI workflows in scripts, CI, cron, and agent wrappers.
CI Google Tasks CLI for CI. Cron Jobs Google Tasks CLI for cron jobs. Shell Scripts Google Tasks CLI for shell scripts. Headless Automation Google Tasks CLI for headless automation. Coding Agents Google Tasks CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
google-tasks.gtasks_list_task_lists | Read read | 4 | List all task lists for the authenticated user in Google Tasks. Returns task list IDs and titles that can be used to manage tasks within each list. |
google-tasks.gtasks_get_task_list | Read read | 1 | Get a specific task list by its ID in Google Tasks. Returns the task list title, ID, and other metadata. |
google-tasks.gtasks_create_task_list | Write write | 1 | Create a new task list in Google Tasks. Provide a title for the new list. |
google-tasks.gtasks_list_tasks | Read read | 5 | List tasks in a specific task list in Google Tasks. Returns task titles, IDs, status, due dates, and notes. Use "list_task_lists" first to find the task list ID. |
google-tasks.gtasks_get_task | Read read | 2 | Get a specific task by its ID from a task list in Google Tasks. Returns the task title, notes, due date, status, and other details. |
google-tasks.gtasks_create_task | Write write | 4 | Create a new task in a Google Tasks list. Provide a title, and optionally notes and a due date. |
google-tasks.gtasks_get_current_user | Read read | 0 | Get information about the currently authenticated Google user. Useful for verifying the connected account. |