Google Calendar MCP OAuth Proxy

Google Calendar MCP OAuth Proxy

Enables MCP clients to authenticate with Google OAuth and securely access Google Calendar's official MCP server without exposing the Google client secret.

Category
Visit Server

README

Google Calendar MCP OAuth Proxy

This Worker acts as the OAuth boundary between an MCP client such as Codex and Google's official Calendar MCP.

Codex / MCP client
        |
        | OAuth to this Worker
        v
Cloudflare OAuth Provider
        |
        | Google OAuth (client ID + client secret)
        v
Google OAuth
        |
        | Google access token
        v
Google Calendar MCP
https://calendarmcp.googleapis.com/mcp/v1

The client never receives the Google OAuth client secret. Google access and refresh tokens are stored in the encrypted OAuth grant props managed by the Cloudflare OAuth provider. The protected /mcp handler replaces the client's local bearer token with the user's Google access token before forwarding MCP traffic upstream.

Google scopes

wrangler.jsonc defines the Google Calendar scopes in GOOGLE_OAUTH_SCOPES:

https://www.googleapis.com/auth/calendar.calendarlist.readonly
https://www.googleapis.com/auth/calendar.events.freebusy
https://www.googleapis.com/auth/calendar.events.readonly
https://www.googleapis.com/auth/calendar.calendars

The Worker automatically adds email profile because the callback uses Google's user-info endpoint to identify the authorized user.

The Google authorization request also uses access_type=offline and prompt=consent so Google returns a refresh token.

Local secrets

Copy the example file:

cp .dev.vars.example .dev.vars

Set:

GOOGLE_CLIENT_ID=<Google OAuth web client ID>
GOOGLE_CLIENT_SECRET=<Google OAuth client secret>
COOKIE_ENCRYPTION_KEY=<strong random secret>
HOSTED_DOMAIN=<optional Google Workspace domain restriction>

GOOGLE_OAUTH_SCOPES and GOOGLE_MCP_URL are non-secret Worker variables in wrangler.jsonc.

Google Cloud OAuth client

Use a Google OAuth Web application client.

The authorized redirect URI must be the public hostname of this Worker or tunnel plus /callback:

https://mcp-auth.example.com/callback

Add the Calendar scopes listed above to the Google Auth Platform consent/data-access configuration.

Run locally

Install dependencies and generate Worker types:

npm install
npm run cf-typegen

Start Wrangler locally on port 5555:

npm run dev

The local endpoint is:

http://localhost:5555/mcp

OAuth requires a public HTTPS callback, so for end-to-end local testing use a Cloudflare Tunnel.

Stable named tunnel

A stable hostname is preferable because the same callback must be registered in Google Cloud.

npx wrangler dev --tunnel-name=mcp-google-auth --tunnel

Configure the named tunnel hostname to route to the Wrangler development server. For example:

https://mcp-auth.example.com  ->  local Wrangler dev server

Then register:

https://mcp-auth.example.com/callback

as the Google OAuth redirect URI.

The MCP URL exposed to Codex is:

https://mcp-auth.example.com/mcp

Codex configuration

Because this Worker is the OAuth authorization server seen by Codex, Codex does not need the Google client ID or Google client secret.

[mcp_servers.google_calendar_proxy]
enabled = true
url = "https://mcp-auth.example.com/mcp"
auth = "oauth"

Then authenticate:

codex mcp login google_calendar_proxy

The expected flow is:

  1. Codex discovers this Worker's OAuth endpoints.
  2. Codex registers/authenticates with this Worker.
  3. The Worker sends the browser to Google.
  4. Google returns to /callback on the Worker/tunnel.
  5. The Worker exchanges Google's authorization code using GOOGLE_CLIENT_SECRET.
  6. Codex receives a Worker-issued OAuth token.
  7. Calls to /mcp are forwarded to Google's official Calendar MCP using the user's Google access token.

Token refresh behavior

Google's refresh token is retained in encrypted OAuth grant props. The proxy keeps a bounded, isolate-local LRU cache of Google access tokens, removes entries when they reach the refresh window, and caps the cache at 100 users. If the stored access token is expired, or Google's MCP returns 401, the Worker uses the Google refresh token plus the Worker-side client secret to mint a new Google access token and retries once.

The in-memory cache is an optimization only. A new Worker isolate can always refresh from the encrypted grant props.

Legacy grants

OAuth grants created before refresh-token support contain only the original Google access token plus user metadata. The proxy detects those grants and continues using their existing access token while Google still accepts it. Once Google rejects that token, the Worker returns 401 invalid_token so the MCP connection can be reauthorized rather than attempting a refresh with missing credentials.

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
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
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
E2B

E2B

Using MCP to run code via e2b.

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
Qdrant Server

Qdrant Server

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

Official
Featured