Personal Google MCP Server
Provides tools for searching, reading, creating drafts, and sending emails in Gmail.
Allows reading and appending text to Google Docs.
Enables reading, writing, and appending data in Google Sheets.
Supports listing, creating, and updating tasks in Google Tasks.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Personal Google MCP Servershow my unread emails from yesterday"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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.
Related MCP server: gmail-drive-mcp-server
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_SECRETOpen 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 installStart command:
npm startInstance type: Free
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_PATHLeave 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.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cieszyn/google-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server