npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@brandcast_app/google-tasks-mcp

v0.1.0

Published

Model Context Protocol (MCP) server for Google Tasks - enables AI assistants to manage tasks

Readme

Google Tasks MCP Server


🚀 Quick Start

1. Create Google OAuth Credentials

  1. Go to Google Cloud Console
  2. Create a new project (or select existing)
  3. Enable the Google Tasks API:
    • Navigate to "APIs & Services" > "Library"
    • Search for "Tasks API"
    • Click "Enable"
  4. Create OAuth 2.0 credentials:
    • Go to "APIs & Services" > "Credentials"
    • Click "Create Credentials" > "OAuth client ID"
    • Choose "Desktop app" as the application type
    • Name it "Google Tasks MCP" (or whatever you prefer)
    • Click "Create"
  5. Download or copy the Client ID and Client Secret

2. Install the Package

npm install -g @brandcast_app/google-tasks-mcp

3. Get Your Refresh Token

Run the authentication script:

# Set your credentials
export GOOGLE_CLIENT_ID="your_client_id_here"
export GOOGLE_CLIENT_SECRET="your_client_secret_here"

# Run auth flow
npx @brandcast_app/google-tasks-mcp auth

This will:

  1. Open your browser
  2. Ask you to authorize the app
  3. Display your configuration to copy

4. Configure Claude Desktop

Add to your config file:

macOS/Linux: ~/.config/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "google-tasks": {
      "command": "npx",
      "args": ["-y", "@brandcast_app/google-tasks-mcp"],
      "env": {
        "GOOGLE_CLIENT_ID": "your_client_id_here",
        "GOOGLE_CLIENT_SECRET": "your_client_secret_here",
        "GOOGLE_REFRESH_TOKEN": "your_refresh_token_here"
      }
    }
  }
}

5. Restart Claude Desktop

Completely quit and relaunch Claude Desktop.


📋 Available Tools

Ask Claude to:

  • "Show my task lists" - List all your Google Tasks lists
  • "Show tasks from [list name]" - Get tasks from a specific list
  • "Create a task 'Buy milk' in my Shopping list" - Create new tasks
  • "Mark task [id] as complete" - Complete tasks
  • "Search for tasks about 'report'" - Search across all lists
  • "Show me all my tasks" - Sync all tasks from all lists

The MCP server provides 9 tools:

  1. listProviders - Get available providers
  2. listTaskLists - Get all task lists
  3. getTasks - Get tasks from a list
  4. createTask - Create a new task
  5. updateTask - Update existing task
  6. completeTask - Mark task complete
  7. deleteTask - Delete a task
  8. searchTasks - Search across lists
  9. syncAllTasks - Get all tasks

🔧 Development

Local Setup

# Clone the repository
git clone https://github.com/BrandCast-Signage/tasks-mcp-server.git
cd tasks-mcp-server

# Install dependencies
npm install

# Build
npm run build

# Run auth flow
export GOOGLE_CLIENT_ID="your_id"
export GOOGLE_CLIENT_SECRET="your_secret"
npm run auth

Testing Locally

Update Claude Desktop config to use local build:

{
  "mcpServers": {
    "google-tasks": {
      "command": "node",
      "args": ["/absolute/path/to/tasks-mcp-server/dist/index.js"],
      "env": {
        "GOOGLE_CLIENT_ID": "...",
        "GOOGLE_CLIENT_SECRET": "...",
        "GOOGLE_REFRESH_TOKEN": "..."
      }
    }
  }
}

📖 Documentation


🔐 Security Notes

  • Tokens are stored only in Claude Desktop's config file
  • Refresh tokens are used to automatically get new access tokens
  • The MCP server doesn't persist any credentials to disk
  • All communication happens locally via stdio

🐛 Troubleshooting

"Provider not found" error

  • Make sure Claude Desktop is completely restarted
  • Check the config file path is correct
  • Verify JSON syntax is valid

Authentication errors

  • Run npm run auth again to get a fresh refresh token
  • Make sure Client ID and Secret match your Google Cloud project
  • Verify the Tasks API is enabled in Google Cloud Console

"Command not found"

  • Make sure the package is installed: npm install -g @brandcast_app/google-tasks-mcp
  • Or use npx: npx @brandcast_app/google-tasks-mcp

📄 License

MIT License - see LICENSE for details.


👥 Contributing

Contributions welcome! Please open an issue or PR.


🔗 Related Projects


Author: Jamie Duncan (@BrandCast-Signage)

Version: 0.1.0 (MVP - Google Tasks only)