Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables users to access and manage their Gmail and Google Drive data via a Streamlit UI or Claude Desktop, supporting email counts, searches, file listings, and storage queries using OAuth authentication.

README.md

⚡ Quick Start Guide - Gmail & Drive MCP

🎯 Goal

Access your Gmail and Google Drive data through a beautiful Streamlit interface.

---

📦 Step 1: Install (2 minutes)

# Install dependencies
pip install -r requirements.txt

---

🔐 Step 2: Get Google Credentials (5 minutes)

A. Create Project

  1. Go to https://console.cloud.google.com/
  2. Click "New Project" → Name: gmail-drive-mcp → Create

B. Enable APIs

  1. Go to "APIs & Services" → "Library"
  2. Search and Enable:
  • Gmail API
  • Google Drive API

C. Create OAuth Credentials

  1. "APIs & Services" → "Credentials"
  2. "Create Credentials" → "OAuth client ID"
  3. First time? Click "Configure Consent Screen":
  • User Type: External
  • App name: Gmail Drive MCP
  • Add your email twice (support + developer)
  • Scopes: Add these URLs:
     https://www.googleapis.com/auth/gmail.readonly
     https://www.googleapis.com/auth/drive.readonly
  • Test users: Add your Gmail
  • Save
  1. Now "Create Credentials" → "OAuth client ID":
  • Type: Desktop app
  • Name: Gmail Drive Desktop
  • Download JSON
  1. Rename downloaded file to credentials.json
  2. Put it in your project folder

---

🚀 Step 3: First Run & Authentication (2 minutes)

# This will open browser for authentication
python gmail_drive_rest.py

What happens:

  1. ✅ Browser opens automatically
  2. ✅ Sign in with your Google account
  3. ✅ Click "Allow"
  4. token.json created (your access token)
  5. ✅ Server starts on port 8000

Keep this terminal running!

---

🎨 Step 4: Open Streamlit UI (1 minute)

New terminal: ``bash streamlit run gmail_drive_ui.py ``

Access: http://localhost:8501

---

🎉 You're Done!

What you can do now:

📊 Dashboard Tab:

  • See inbox count
  • See spam count
  • See total Drive files
  • View storage usage
  • Recent emails & files

📧 Gmail Manager Tab:

  • Count emails by label
  • List recent emails
  • Search emails (e.g., from:boss@company.com)

📁 Drive Manager Tab:

  • Count all files
  • List recent files
  • Search files by name
  • Check storage quota

---

🔧 Troubleshooting

"credentials.json not found"

→ Download it from Google Cloud Console, rename it, put it in project folder

"Access blocked"

→ Make sure you enabled both Gmail API and Drive API

Browser doesn't open

→ Copy the URL from terminal and paste in browser

"Invalid grant"

→ Delete token.json and run again to re-authenticate

Connection error in Streamlit

→ Make sure gmail_drive_rest.py is still running in another terminal

---

📁 File Structure

your-project/
├── credentials.json          ← Download from Google
├── token.json               ← Auto-generated after auth
├── requirements.txt
├── gmail_drive_mcp.py       ← MCP Server (for Claude)
├── gmail_drive_rest.py      ← REST API (run this!)
├── gmail_drive_ui.py        ← Streamlit UI (run this!)
└── .gitignore

---

🎓 Next Steps

Use with Claude Desktop:

  1. Run MCP server:
   python gmail_drive_mcp.py
  1. Add to Claude config (~/Library/Application Support/Claude/claude_desktop_config.json):
   {
     "mcpServers": {
       "gmail-drive": {
         "command": "python",
         "args": ["/full/path/to/gmail_drive_mcp.py"]
       }
     }
   }
  1. Restart Claude Desktop
  1. Ask Claude:
  • "How many emails do I have?"
  • "Search my emails for messages from John"
  • "How many files are in my Drive?"

---

⚡ Quick Commands Reference

# Install
pip install -r requirements.txt

# Run REST API (Terminal 1)
python gmail_drive_rest.py

# Run Streamlit (Terminal 2)
streamlit run gmail_drive_ui.py

# Run MCP for Claude (Alternative)
python gmail_drive_mcp.py

---

🔒 Security Reminder

NEVER commit these files to Git:

  • ❌ credentials.json
  • ❌ token.json

They contain your private keys! Already added to .gitignore

---

🎯 Summary

| Terminal | Command | Purpose | |----------|---------|---------| | 1 | python gmail_drive_rest.py | REST API server | | 2 | streamlit run gmail_drive_ui.py | Web interface |

Access UI: http://localhost:8501

That's it! 🎉

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Vector & Memory servers.