Personal Google MCP Server
Gives Claude read/write access to your own Gmail, Google Docs, Google Sheets, and Google Tasks via a tiny always-on web service.
README
Personal Google MCP Server
Gives Claude read/write access to your own Gmail, Google Docs, Google Sheets, and Google Tasks. Runs as a tiny always-on web service so it works from Claude on your phone with your computer off.
Tools included: sheets_read, sheets_write, sheets_append, docs_read,
docs_append_text, gmail_search, gmail_read, gmail_create_draft,
gmail_send, tasks_list, tasks_create, tasks_update.
Cost: $0/month (Render free tier + Google APIs are free for personal use).
Step 1 — Create a Google Cloud project + OAuth credentials (~10 min)
- Go to https://console.cloud.google.com/projectcreate — create a project (any name).
- Go to APIs & Services → Library and enable, one by one:
- Google Sheets API
- Google Docs API
- Gmail API
- Tasks API
- Go to APIs & Services → OAuth consent screen.
- User type: External. App name: anything. Add your own email as a test user.
- You do NOT need to submit for verification — test mode works indefinitely for you as a test user.
- Go to APIs & Services → Credentials → Create Credentials → OAuth client ID.
- Application type: Desktop app.
- Save the Client ID and Client Secret shown.
Step 2 — Get a refresh token (run once, on your own computer)
You need Node.js installed locally for this one step only.
# unzip the project folder first, then:
cd google-mcp-server
npm install
node get-token.js YOUR_CLIENT_ID YOUR_CLIENT_SECRET
Open the URL it prints, approve access with your Google account, and it will
print a GOOGLE_REFRESH_TOKEN=... value in your terminal. Save that — you
won't do this step again unless you revoke access.
Step 3 — Deploy to Render (free, no credit card)
- Push this folder to a new private GitHub repo.
- Go to https://render.com → sign up free → New → Web Service → connect that repo.
- Settings:
- Build command:
npm install - Start command:
npm start - Instance type: Free
- Build command:
- Add environment variables (Render dashboard → Environment):
GOOGLE_CLIENT_ID— from Step 1GOOGLE_CLIENT_SECRET— from Step 1GOOGLE_REFRESH_TOKEN— from Step 2MCP_SECRET_PATH— make up a long random string (e.g. runnode -e "console.log(require('crypto').randomBytes(24).toString('hex'))"and use the output). This acts as your connector's password — anyone with this exact URL can access your Google account through it, so keep it private and don't commit it to a public repo.
- Deploy. Render gives you a URL like
https://your-app.onrender.com.
Note: Render's free tier spins the service down after 15 minutes of no traffic, so the first request after a break takes ~30–50 seconds to wake up. That's normal — just wait for it once.
Step 4 — Add it to Claude
- In the Claude app: Settings → Connectors → Add custom connector.
- Name: anything (e.g. "My Google Tools").
- URL:
https://your-app.onrender.com/mcp/YOUR_MCP_SECRET_PATH - Leave OAuth fields blank — save.
- In a chat, enable the connector (
+→ Connectors) and try: "list my Google Tasks" or "read Sheet [ID], tab Trip".
This works identically on your phone and desktop, since the server lives on Render, not on your computer.
Notes / limits
- This is single-user: it only ever acts as you (whoever ran Step 2). Don't share the URL.
gmail_sendsends immediately — no confirmation step. If you'd rather always review before sending, just tell Claude to usegmail_create_draftinstead, or remove thegmail_sendtool fromindex.js.- To add more tools later (Calendar, Drive search, etc.), copy the pattern of
any existing
server.registerTool(...)block inindex.js.
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.