KosmoKrator

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_token Manual OAuth token
cli_setup_supported
true
cli_runtime_supported
true
mcp_gateway_supported
true
lua_supported
true
supports_multi_account
true

Quick Links

Google Tasks MCP Client Matrix

Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Google Tasks.

Google Tasks CLI Matrix

Use these pages for direct Google Tasks CLI workflows in scripts, CI, cron, and agent wrappers.

Function Catalog

FunctionTypeParametersDescription
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.