Google Tasks MCP Server

Google Tasks MCP Server

Enables LLMs like Claude to manage Google Tasks by listing, creating, updating, completing, and deleting tasks and task lists, including setting due dates and notes.

Category
Visit Server

README

Google Tasks MCP Server

A Model Context Protocol (MCP) server that provides access to your Google Tasks. This server enables LLMs (like Claude) to list, create, update, complete, and delete your Google Tasks.

Features

  • List Task Lists: View all your task lists.
  • Manage Tasks: Create, update, delete, and complete tasks.
  • Task Details: Set due dates, notes, and move tasks (subtasks).
  • FastMCP: Built using the fastmcp library for easy integration.

Setup

Prerequisites

  • Python 3.10 or higher
  • A Google Cloud Platform (GCP) Project
  • uv (recommended) or pip

Installation

  1. Clone this repository:

    git clone https://github.com/yourusername/gtasks-mcp.git
    cd gtasks-mcp
    
  2. Create a virtual environment and install dependencies:

    # Using uv (faster)
    uv venv
    source .venv/bin/activate
    uv pip install -r requirements.txt
    
    # OR using pip
    python3 -m venv venv
    source venv/bin/activate
    pip install -r requirements.txt
    

Google Cloud Setup

To use this server, you need to set up a Google Cloud project and enable the Tasks API.

  1. Create a Project: Go to the Google Cloud Console and create a new project.
  2. Enable API:
    • Go to APIs & Services > Library.
    • Search for "Google Tasks API" and click Enable.
  3. Configure Consent Screen:
    • Go to APIs & Services > OAuth consent screen.
    • Select External (unless you are a Google Workspace user and want Internal).
    • Fill in the required App Information (App name: "GTasks MCP", User support email, Developer contact email).
    • Click Save and Continue.
    • Scopes: Click Add or Remove Scopes. Filter for tasks. Select https://www.googleapis.com/auth/tasks (Access to your tasks).
    • Click Update and then Save and Continue.
    • Test Users: Add your own email address as a test user. This is critical while the app is in "Testing" mode.
  4. Create Credentials:
    • Go to APIs & Services > Credentials.
    • Click Create Credentials > OAuth client ID.
    • Application type: Desktop app.
    • Name: "GTasks MCP User".
    • Click Create.
  5. Download Client Secret:
    • Download the JSON file for your new OAuth client.
    • Rename the file to client_secret.json.
    • Move it to the root directory of this project.

Usage with Claude for Desktop

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "google-tasks": {
      "command": "/absolute/path/to/your/venv/bin/python",
      "args": [
        "/absolute/path/to/gtasks-mcp/server.py"
      ]
    }
  }
}

Note: Replace /absolute/path/to/ with the actual full paths on your machine.

Authentication

When you first run the server (or when Claude tries to use it), it will open a browser window asking you to log in with your Google account.

  1. Select the account you added as a Test User.
  2. You will likely see a "Google hasn't verified this app" warning. This is expected for personal testing apps.
  3. Click Advanced > Go to GTasks MCP (unsafe).
  4. Click Continue to grant access.
  5. The browser will show "The authentication flow has completed". You can close it.

A token.json file will be created to store your credentials for future use.

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured