MCP Server Bridge

Google Workspacefor Poke

Connect your Google account to expose Tasks and Keep as MCP tools that Poke (and any MCP client) can call directly.

Checking...

Exposed Tools

google_tasks_list

List all task lists and their tasks from Google Tasks.

google_tasks_create

Create new tasks with title, notes, and due date.

google_keep_list

Lists notes from Google Keep. Note: Keep has no public REST API, so this returns guidance on using Google Takeout instead.

Setup Guide

1

Create a Google Cloud Project

Go to the Google Cloud Console and create a new project (or select an existing one).

2

Enable the Tasks API

Navigate to APIs & Services > Library, search for “Google Tasks API”, and enable it.

3

Configure OAuth Consent Screen

Go to APIs & Services > OAuth consent screen, choose External, and fill in:

  • • App name: Google MCP Bridge
  • • User support email: jack@jackdanieltaylor.com
  • • Developer contact: jack@jackdanieltaylor.com

Add the scopes: .../auth/tasks and .../auth/tasks.readonly. Add yourself (jack@jackdanieltaylor.com) as a test user.

4

Create OAuth Credentials

Go to APIs & Services > Credentials, click Create Credentials > OAuth client ID, choose Web application, and set:

  • • Authorized JavaScript origins: https://google-mcp-bridge.revjackdaniel.poke.site
  • • Authorized redirect URIs: https://google-mcp-bridge.revjackdaniel.poke.site/auth/google/callback
5

Set Environment Variables

Copy the Client ID and Client Secret from the credentials page and set them as environment variables:

GOOGLE_CLIENT_ID=your-client-id.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=your-client-secret
# Optional: Vercel sets this automatically in production
# VERCEL_PROJECT_PRODUCTION_URL=google-mcp-bridge.revjackdaniel.poke.site
6

Link with Poke / Any MCP Client

In your MCP client configuration, add the server with the URL of this site’s /mcp endpoint:

{
  "mcpServers": {
    "google-workspace": {
      "url": "https://google-mcp-bridge.revjackdaniel.poke.site/mcp"
    }
  }
}

Then connect your Google account by clicking the “Connect Google” button above on this page.

MCP Endpoint

/mcp·JSON-RPC 2.0·GET (discover) / POST (call)

The MCP endpoint follows the Model Context Protocol specification. Use any MCP-compatible client to discover and invoke the Google Workspace tools.

Built for Poke. Google Workspace MCP Bridge © 2026