google-tasks-mcp-server
Provides full read/write access to Google Tasks, allowing management of task lists and tasks including creating, updating, completing, deleting, moving, and clearing completed tasks.
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-mcp-serverWhat tasks are 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-server
An MCP server for Google Tasks. Gives any MCP client (Claude Desktop, Claude Code, Codex, Cursor, etc.) full read/write access to your task lists and tasks: list, create, update, complete, delete, and move them, with real due dates.
There's no official Google Tasks MCP server, so this covers that. Full CRUD, OAuth installed-app auth flow (your credentials never leave your machine), TypeScript throughout.
Tools
Task lists
google_tasks_list_tasklistslist all task listsgoogle_tasks_get_tasklistget one task listgoogle_tasks_create_tasklistcreate a new task listgoogle_tasks_update_tasklistrename a task listgoogle_tasks_delete_tasklistdelete a task list and all its tasks
Tasks
google_tasks_list_taskslist tasks in a list, with due-date/updated filters and paginationgoogle_tasks_get_taskget one taskgoogle_tasks_create_taskcreate a task (optionally as a subtask, optionally positioned)google_tasks_update_taskupdate title/notes/due date/statusgoogle_tasks_complete_task/google_tasks_reopen_taskmark done / not donegoogle_tasks_delete_taskdelete a taskgoogle_tasks_move_taskreorder, re-parent, or move a task to a different listgoogle_tasks_clear_completed_tasksclear all completed tasks from a list
Every tool supports response_format: "markdown" | "json".
Related MCP server: google-tasks-mcp
Quick start
From npm:
npm install -g @girmmy/google-tasks-mcp-serverOr don't install it at all and let your MCP client run it via npx (see step 4).
Or from source:
git clone https://github.com/girmmy/google-tasks-mcp-server.git
cd google-tasks-mcp-server
npm install
npm run buildEither way, follow Setup below to create your own Google OAuth credentials and authorize. There's no shared or hosted version of this, it talks directly to your own Google account.
Setup
1. Create a Google Cloud OAuth client
Each user needs their own OAuth client. It's not something that can be shared, since anyone using your client secret could impersonate your app (though they'd still need each individual user's own consent).
Go to the Google Cloud Console, create (or pick) a project.
APIs & Services → Library → enable the Google Tasks API.
APIs & Services → OAuth consent screen (Google now calls this "Google Auth Platform"):
User type: External is fine for personal use.
Fill in app name and your email for support/contact.
Under Audience → Test users, add your own Google account. While the app is in "Testing" status only listed test users can authorize it, which is fine for running this yourself.
Clients → Create Client → Application type Desktop app. Create it.
Grab the client ID and client secret, either via "Download JSON" right after creation or from the client's detail page later. Google's console won't show a secret's plaintext again once you navigate away, only download or regenerate it, so if you lose it just add a new secret instead of hunting for the old one.
Save that file. By default this server looks for it at:
~/.config/google-tasks-mcp-server/client_secret.json(override the path with theGOOGLE_TASKS_CLIENT_SECRETenv var, useful if you'd rather keep it inside the project directory, e.g../credentials/client_secret.json.credentials/is already gitignored.)
The file should look like:
{
"installed": {
"client_id": "YOUR_CLIENT_ID.apps.googleusercontent.com",
"client_secret": "YOUR_CLIENT_SECRET",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://oauth2.googleapis.com/token",
"redirect_uris": ["http://localhost"]
}
}2. Install
From npm (nothing to build):
npm install -g @girmmy/google-tasks-mcp-serverFrom source:
npm install
npm run build3. Authorize (one-time)
If you installed from npm:
google-tasks-mcp-auth
# or without installing anything:
npx -y -p @girmmy/google-tasks-mcp-server google-tasks-mcp-authFrom source:
npm run auth
# or, if your client secret lives at a custom path:
GOOGLE_TASKS_CLIENT_SECRET=./credentials/client_secret.json npm run authThis prints a Google consent URL and tries to open it in your default browser. Sign in, grant access, and it redirects back to a short-lived local server on http://localhost:53682. The token gets cached to ~/.config/google-tasks-mcp-server/token.json (override with GOOGLE_TASKS_TOKEN_PATH) and refreshed automatically from then on, so you shouldn't need to run this again unless you revoke access.
Run this on the same machine and in the same regular terminal you'll actually use day to day. See Troubleshooting below if you're running it from a container, VM, or sandboxed shell where localhost doesn't map back to your browser.
4. Run it
npm startOr wire it into an MCP client. For Claude Desktop / Claude Code, add to your MCP config (usually ~/Library/Application Support/Claude/claude_desktop_config.json on macOS).
Using npm, with your client secret at the default ~/.config/... path, this is the whole config:
{
"mcpServers": {
"google-tasks": {
"command": "npx",
"args": ["-y", "@girmmy/google-tasks-mcp-server"]
}
}
}Or pointing at a source checkout:
{
"mcpServers": {
"google-tasks": {
"command": "node",
"args": ["/absolute/path/to/google-tasks-mcp-server/dist/index.js"],
"env": {
"GOOGLE_TASKS_CLIENT_SECRET": "/absolute/path/to/google-tasks-mcp-server/credentials/client_secret.json"
}
}
}
}Omit the env block if you saved your client secret at the default ~/.config/... path. Fully quit and reopen your MCP client afterward.
Codex
Codex uses TOML rather than JSON. Add this to ~/.codex/config.toml:
[mcp_servers.google-tasks]
command = "npx"
args = ["-y", "@girmmy/google-tasks-mcp-server"]
startup_timeout_sec = 60Or let the CLI write it for you:
codex mcp add google-tasks -- npx -y @girmmy/google-tasks-mcp-serverRaise startup_timeout_sec if the first launch times out. A cold npx downloads the
package before the server can answer initialize, and Codex's default allowance is short
enough that this sometimes trips on the first run only.
If your client secret isn't at the default path, add:
[mcp_servers.google-tasks.env]
GOOGLE_TASKS_CLIENT_SECRET = "/absolute/path/to/client_secret.json"Check it registered with codex mcp list. Authorization is the same one-time
google-tasks-mcp-auth step as everywhere else — run it in a normal terminal, not inside
Codex, since it needs to open a browser and catch a loopback redirect.
Environment variables
Variable | Default | Purpose |
|
| Path to the downloaded OAuth client JSON |
|
| Path where the cached OAuth token is stored |
|
| Loopback port used only during |
Security notes
The client secret and cached token are plain files on disk (mode
0600for the token). Never commit them (.gitignorealready excludesclient_secret*.json,token.json,credentials/).The server requests the full
https://www.googleapis.com/auth/tasksscope (read/write). For read-only access, editTASKS_SCOPEinsrc/constants.tsto.../auth/tasks.readonlybefore runningnpm run auth. Write tools will then fail with a 403 from Google, which is expected.Tool annotations mark deletion/clear operations as
destructiveHint: trueso MCP clients can warn or gate on them.Nothing here talks to any server but Google's own APIs and, during
npm run auth, a local loopback listener. No third-party backend involved.
Troubleshooting
npm run auth opens a URL, I click Allow, and it just hangs.
The process running npm run auth isn't on the same machine/network as the browser you're clicking Allow in. Common if you're running the server inside a container, remote dev environment, or sandboxed shell that isolates localhost. Fix: run npm run auth directly in a normal local terminal on the machine whose browser you're using.
Error [TransformError] ... You installed esbuild for another platform
Your node_modules was installed on a different OS/architecture than you're running on now, e.g. copied from a Docker container or a different machine. Fix: rm -rf node_modules package-lock.json && npm install.
Authorization failed: invalid_client
Your client_secret.json has the wrong client secret in it, usually from copy-pasting it by hand instead of downloading it directly. Go back to Google Cloud Console, add a fresh client secret, download or copy it directly, and update your client_secret.json.
Server exits immediately with "No cached Google Tasks token found"
You haven't authorized yet, or the flow didn't finish. Run google-tasks-mcp-auth (npm install) or npm run auth (source checkout) before starting the server.
Development
npm run dev # run directly from TypeScript with auto-reload
npm run build # type-check and compile to dist/Test with the MCP Inspector:
npx @modelcontextprotocol/inspector node dist/index.jsContributing
Issues and PRs welcome. This covers the full Tasks API surface but hasn't been tested across every edge case, so if you hit a bug or want a feature, open an issue.
License
MIT, see LICENSE.
This server cannot be installed
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 Connectors
Permissioned access to Gmail, Drive and Calendar via the user's own Google account
Local-first task manager: create, edit, and complete tasks, projects, and checklists via MCP.
Read teams, spaces, lists and tasks; create, update and comment on tasks and track time.
Read and write Mission Control state via MCP — projects, tasks, subtasks, templates, status updates.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceIntegrates with Google Tasks to enable searching, listing, creating, updating, and deleting tasks through MCP tools. It provides a comprehensive interface for managing task lists and individual task details via the Google Tasks API.MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to manage Google Tasks, including listing, creating, updating, deleting, and completing tasks via the Google Tasks API.82MIT
- AlicenseAqualityBmaintenanceEnables managing Google Tasks (list, create, update, complete, uncomplete, delete) via OAuth 2.0 authorization.8MIT
- AlicenseAqualityBmaintenanceEnables AI agents to read and manage a user's Google Tasks, including creating, editing, completing, moving, and deleting tasks and task lists via the Google Tasks API.14MIT
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/girmmy/google-tasks-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server