Google Tasks MCP
Provides tools for managing Google Tasks, including listing, creating, updating, completing, moving, and deleting tasks and task lists.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Google Tasks MCPList my tasks due today"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Google Tasks MCP
An MCP server that lets Claude manage your Google Tasks — the to-dos that show up on Google Calendar. List, create (one or many at once), update, complete, move, and delete tasks and task lists.
Sibling of google-sheets-mcp; same architecture, same deployment story:
Local — a
.mcpbdesktop extension for Claude Desktop and local Cowork sessions.Remote — a Cloudflare Worker you add as a custom connector, which also works in cloud Cowork sessions, claude.ai on the web, and mobile.
Built on the MCP TypeScript SDK v2
(2026-07-28 spec, with fallback for 2025-era clients such as today's claude.ai) and the
Google Tasks API v1, with no Google SDK dependency — just fetch, so the same code runs on
Node and in V8 isolates.
The one thing to know about Google Tasks
Google Tasks stores date-only due dates. The API accepts a timestamp but discards the
time; there is no way to set or read a time of day. So every tool here takes due as
YYYY-MM-DD and the task renders as an all-day item on that date in Google Calendar.
(Sending local midnight instead of UTC midnight is the classic "task shows a day early"
bug — this server always sends UTC midnight.)
Other API limits: no recurring tasks, no starring, one level of subtasks, title ≤ 1024 chars, notes ≤ 8192 chars.
Related MCP server: Procrastinator MCP Server
Tools
Tool | What it does |
| All lists with ids and titles — call first |
| Manage lists (delete requires |
| Tasks in a list; filter by |
| One task by id |
| One task: |
| Up to 100 tasks in one call, idempotent on title+due by default; returns a per-item report |
| Change title / notes / due / status; pass |
| Toggle done |
| Reorder, nest/un-nest, or move to another list |
| Delete one task |
| Hide completed tasks (like the UI's "Clear completed") |
Lists can be referenced by id or title; omit for the default list.
1. Google Cloud credentials (one-time, needed either way)
In Google Cloud Console, create or pick a project (reusing the one from google-sheets-mcp is fine).
Enable the Google Tasks API.
APIs & Services → OAuth consent screen: add the scope
https://www.googleapis.com/auth/tasks, add yourself under Test users, then click Publish app. Personal-use apps (under 100 users) don't need Google's verification review — you click through an "unverified app" warning once. Publishing matters because while the app sits in Testing, Google revokes refresh tokens every 7 days.APIs & Services → Credentials → OAuth client ID → Desktop app (or reuse the sheets one). Save the Client ID and Client Secret.
The Tasks API is free; the project never needs a billing account.
2a. Local install (Claude Desktop / local Cowork sessions)
npm install
npm run pack # builds and produces google-tasks.mcpb (~1.7 MB)Double-click google-tasks.mcpb, or Claude Desktop → Settings → Extensions → Install
Extension…. Paste your Client ID and Secret. On first use a browser opens to authorize;
the refresh token is cached at ~/.config/google-tasks-mcp/token.json.
Local MCP servers do not run in cloud Cowork sessions or on claude.ai — for those, use the remote deployment below.
2b. Remote install (cloud Cowork sessions, web, mobile)
Mint a refresh token (this one must carry the tasks scope — a token minted for sheets won't work):
GOOGLE_OAUTH_CLIENT_ID=…apps.googleusercontent.com \
GOOGLE_OAUTH_CLIENT_SECRET=… \
npm run mint-tokenPick a bearer token (a fresh one, not the sheets one, so each connector can be revoked independently):
node -e "console.log(require('crypto').randomBytes(32).toString('base64url'))"Deploy to Cloudflare Workers:
npx wrangler login
npx wrangler secret put MCP_BEARER_TOKEN
npx wrangler secret put GOOGLE_OAUTH_CLIENT_ID
npx wrangler secret put GOOGLE_OAUTH_CLIENT_SECRET
npx wrangler secret put GOOGLE_REFRESH_TOKEN
npm run deployVerify with curl https://google-tasks-mcp.<you>.workers.dev/health → ok.
Add it to Claude: Settings → Connectors → Add custom connector.
If the dialog has a Request headers section: URL
https://google-tasks-mcp.<you>.workers.dev/mcp, headerauthorization: Bearer <your MCP_BEARER_TOKEN>.Otherwise put the token in the path:
https://google-tasks-mcp.<you>.workers.dev/mcp/<your MCP_BEARER_TOKEN>.
First smoke test in Claude: list_tasklists, then create_task with a due date, then
open Google Calendar and confirm it landed on the right day.
Security notes
The endpoint is public; the bearer token is the only gate. Long random value, treat as a password. Auth fails closed (no token configured → every request 401), comparison is constant-time, and browser
Originheaders other than claude.ai are rejected (403).GOOGLE_REFRESH_TOKENgrants full read/write on every task list in the account.Revoke everything: myaccount.google.com/permissions.
Configuration reference
Env var / secret | Purpose |
| OAuth client (both modes) |
| Pre-minted refresh token (required for remote) |
| Shared secret required by the remote endpoint |
| Override the local token cache location |
Scope: https://www.googleapis.com/auth/tasks.
Development
npm install
npm run build # compile to dist/
npm run typecheck
npm run pack # build + package the .mcpb bundle
npm run dev:worker # run the Worker locally via wrangler
npm run deploysrc/
index.ts stdio entry point (local)
worker.ts Cloudflare Worker entry (remote) + bearer auth + origin check
server.ts server factory: registers all tool groups
config.ts credentials → token provider, shared by both entries
google/
auth.ts fetch-based refresh-token provider
client.ts REST client for the Tasks API (14 endpoints)
types.ts minimal API types
node/
localOAuth.ts Node-only desktop OAuth loopback flow
mintToken.ts CLI to print a refresh token for remote deploys
tools/
lists.ts task-list tools
tasks.ts single-task CRUD, complete/reopen, move, clear
bulk.ts create_tasks (batch, idempotent)
shared.ts zod schemas + compact task view
utils/
dates.ts YYYY-MM-DD ↔ RFC 3339 UTC-midnight
result.ts tool result/error helpersRoadmap
v2 auth: replace the shared secret with spec-conformant OAuth 2.1 (RFC 9728 PRM, PKCE, CIMD/DCR) using
@cloudflare/workers-oauth-provider, so each Claude user connects their own Google account. Not needed for a personal deployment.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityFmaintenanceA Model Context Protocol server that bridges Claude with Google Tasks, allowing users to manage task lists and tasks directly through Claude interface.151848MIT
- Flicense-qualityDmaintenanceAn OAuth-authenticated MCP server that bridges Claude AI with a task management system, allowing users to list, create, and update tasks through natural language commands.1
- Flicense-qualityDmaintenanceA task management MCP server that provides tools to create, list, complete, and delete tasks using pluggable storage backends. It enables users to interact with their task lists through natural language using MCP-compatible clients like Claude Desktop.
- Flicense-qualityDmaintenanceA local task management MCP server that enables users to create, update, and manage tasks through natural language conversations with Claude. It provides nine tools for comprehensive task management including creation, filtering, searching, and daily planning without requiring a separate UI or backend service.
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Hosted Google Calendar MCP server for AI agents. No self-hosting or Google Cloud setup.
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ezrazhang7/google-tasks-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server