Google Tasks MCP Server

Connect an MCP-compatible client to Google Tasks through a private server you run yourself. The server exposes compact tools for reading, searching, summarizing, creating, completing, updating, deleting, and moving Google Tasks. It runs locally over stdio via the published package.

People connecting productivity tools to Claude, Cursor, VS Code, or another MCP client. The project is written in Python.

VERIFIED ACTIVE

LAST COMMIT 2026-05-21 · ★ 2 · #111 OF 139 MAINTAINED PRODUCTIVITY · VERIFIED 2026-08-25

Apache-2.0 · Python servers · how we verify → /methodology

01 · Install Google Tasks MCP Server

before you install - you'll need

Set GOOGLE_CLIENT_ID, GOOGLE_CLIENT_SECRET, GOOGLE_REDIRECT_URI, DB_PATH, BIND_HOST, BIND_PORT before connecting. MCP_BEARER_TOKEN is optional or environment-specific per the README.

Claude Code

claude mcp add ebmurha-google-tasks-mcp -- uvx google-tasks-mcp

Claude Desktop / Cursor / VS Code - add to config

{
  "mcpServers": {
    "ebmurha-google-tasks-mcp": {
      "command": "uvx",
      "args": [
        "google-tasks-mcp"
      ]
    }
  }
}

Same JSON for Cursor. For VS Code, rename the top-level key from `mcpServers` to `servers`.

Using another client? Same JSON, different key

Claude Desktop · mcpServers

Cursor · mcpServers

VS Code · servers

Windsurf · mcpServers

Zed · context_servers

Cline · mcpServers

Roo Code · mcpServers

Continue · mcpServers

LibreChat · mcpServers

Gemini CLI · mcpServers

Codex CLI · mcp_servers

Full setup guides: every client.

02 · Evidence

Security posture

What to check before giving this server access to your agent - from the registry, GitHub, and our own probes. We don't score safety; we show what's verifiable.

runs as local process (stdio) - runs on your machine with your user's permissions

license Apache-2.0 - declared in the repository

pypi package google-tasks-mcp - check the name against the project README before installing (PyPI has no namespace ownership)

registry namespace io.github.ebmurha is GitHub-verified and matches the repo owner

03 · What Google Tasks MCP Server can do

Prose above is summarized from the project's README and registry record - no invented capabilities.

Limitations (from the README)

These are Google Tasks REST API limits: - Due dates are date-only. Google drops time-of-day values on task due dates. - Recurring tasks cannot be created or read through the Google Tasks REST API. - clear_completed hides completed tasks; it does not permanently delete them.

04 · Who maintains Google Tasks MCP Server

Google Tasks MCP Server is maintained by ebmurha. It's the only MCP server we track from this author; the repo dates to May 2026.

05 · Facts

category
productivity - ranked #111 of 139 actively-maintained productivity servers as of 2026-08-25.
registry
io.github.ebmurha/google-tasks-mcp (active, first published 2026-05-06 · 4 versions)
packages
pypi:google-tasks-mcp

06 · Google Tasks MCP Server FAQ

What is Google Tasks MCP Server?

Connect an MCP-compatible client to Google Tasks through a private server you run yourself. The server exposes compact tools for reading, searching, summarizing, creating, completing, updating, deleting, and moving Google Tasks. It runs locally over stdio via the published package.

Is Google Tasks MCP Server still maintained?

Yes - as of 2026-08-25, its last commit was 2026-05-21. We re-verify nightly.

How do I install Google Tasks MCP Server?

Run `uvx google-tasks-mcp`. The README documents 7 environment variables (GOOGLE_CLIENT_ID, GOOGLE_CLIENT_SECRET, GOOGLE_REDIRECT_URI…) to set first. Set GOOGLE_CLIENT_ID, GOOGLE_CLIENT_SECRET, GOOGLE_REDIRECT_URI, DB_PATH, BIND_HOST, BIND_PORT before connecting. MCP_BEARER_TOKEN is optional or environment-specific per the README. You can also paste the ready-made client config above.

Does Google Tasks MCP Server run locally?

Yes - it's a stdio server: it runs on your machine (via uvx) with your user's permissions. Your data stays local unless the server itself calls external APIs.

07 · Alternatives to Google Tasks MCP Server