Skip to main content
The google-tasks MCP adapter wraps the Google Tasks API. Use it in workflow mcp_call steps to create follow-ups from form submissions, list open tasks for digests, mark items complete after approvals, and organize work across multiple task lists — lightweight task tracking without a full project-management tool.

Prerequisites

  • A Google account with Google Tasks access
  • A Google Workspace connection in AgentRuntime (OAuth via the Google account card on Connections)
  • project_contributor access in your workspace

Connect in AgentRuntime

1

Connect Google

On Connections, use the Google account card and complete OAuth. See Google Workspace setup and Connections.
2

Enable Tasks

On your Google connection, enable the Tasks service so the account exposes Tasks API scopes.
3

Add google-tasks MCP instance

Go to MCP, click Add instance for google-tasks. Open Instance config, wire your Google connection, and set the profile active.
4

Test in a workflow

Smoke-test with mcp_call in Workflow Studio. Test with list_tasklists before production workflows.

What you can build

  • Support ticket follow-up — Zendesk or webhook payload → create_task in “Support queue” list with due date → gmail assignee notification.
  • Daily task digest — Morning schedule → list_tasks with show_completed: false → LLM priority summary → slack post to team channel.
  • Form-to-actiongoogle-form new response → create_task with respondent notes → update_task when human_task resolves the case.
  • Sprint cleanup — End of sprint cron → list_tasks filtered by completed_min → archive notes to google-sheetsclear_completed_tasks on the list.

Tools

Example

Create a follow-up task when a high-priority form response arrives:

Troubleshooting