Best Google Drive MCP Servers in 2026: 5 Tools to Connect Claude to Your Drive
Ranked: the 5 best Google Drive MCP servers for Claude Desktop, Claude Code, and Cursor. Search and read your Drive from chat, with OAuth setup, security scoping, and a comparison table. All free and open source.

TL;DR — Best Google Drive MCP Servers for 2026
A Google Drive MCP server turns your AI assistant into a research partner that can search, read, and organize everything in your Drive — without you copy-pasting a single document. We tested every Drive MCP in the Skiln directory and ranked the top 5: the reference Google Drive MCP, Think41, Node2Flow, mcp-drive, and Pipeworx. All are free and open source, all support OAuth, and all work in Claude Desktop, Claude Code, Cursor, and Windsurf. Below: the ranking, a comparison table, install steps, and how to scope OAuth so the AI can read your files but never delete them.
Curated from 75,000+ MCP servers indexed on Skiln · Updated daily
Table of Contents
- What Is a Google Drive MCP Server?
- How We Ranked Them
- The Best Google Drive MCP Servers
- Quick Comparison Table
- What You Can Do With a Google Drive MCP
- How to Install a Google Drive MCP
- OAuth Scopes and Security
- Pairing Drive With the Rest of Google Workspace
- Frequently Asked Questions
What Is a Google Drive MCP Server?
A Google Drive MCP server is a small program that connects an AI client to your Google Drive over the Model Context Protocol. Once it is installed, your assistant gains tools it can call mid-conversation: search Drive by keyword, list the files in a folder, fetch the contents of a document, and — depending on the server — create or update files.
The practical effect is that Claude or Cursor stops being a blank slate and starts being an assistant that knows where your documents live. Instead of pasting a contract into the chat, you ask "find the latest vendor agreement in my Drive and summarize the payment terms." The MCP does the searching and reading; the model does the thinking.
MCP itself was published by Anthropic in late 2024 and adopted across every major AI client through 2025. By 2026 the ecosystem spans 75,000+ servers indexed across registries like Smithery, Glama, PulseMCP, and LobeHub. Google Drive is one of the most-requested integrations because so much real work lives in Drive — proposals, spreadsheets, research, meeting notes. If you are new to the protocol, start with our primer on understanding MCP servers.
How We Ranked Them
We scored every Google Drive MCP in the Skiln directory on four signals: maintenance (recent commits and a responsive issue tracker), auth quality (clean OAuth flow, scope control, refresh-token handling), feature depth (search, read, write, folder operations, shared-drive support), and documentation (a README that actually tells you how to set it up). The five servers below score highest on the composite. Every one is free, open source, and works across the major MCP clients.
The Best Google Drive MCP Servers
1. Google Drive MCP (Reference Server)
The most widely tested Google Drive integration, derived from the official modelcontextprotocol/servers collection. It exposes Drive search and file reading with clean OAuth, and it is the version most other Drive MCPs are forked from. If you want the safest, best-documented starting point, install this one.
Best for: Research workflows, document discovery, summarizing folders of files, anyone who wants the reference implementation.
Auth: OAuth 2.0 with a drive.readonly or full drive scope.
2. Think41 Google Drive MCP
A polished Drive MCP distributed through Smithery, which makes installation a single command and handles much of the OAuth boilerplate for you. Strong search support and reliable file reading, with a setup flow that is friendlier than wiring up a Google Cloud project by hand.
Best for: Users who want the fastest path to a working Drive connection without manually configuring OAuth credentials.
Auth: OAuth via the Smithery-managed flow.
3. Node2Flow Google Drive MCP
Part of the Node2Flow family of Google Workspace MCPs (Drive, Sheets, Gmail). The advantage here is consistency: if you also install the Node2Flow Sheets MCP and Gmail MCP, they share the same auth model and naming conventions, so your whole Workspace stack feels coherent.
Best for: Teams that want Drive, Sheets, and Gmail from one consistent vendor with a shared OAuth setup.
Auth: OAuth 2.0, shared across the Node2Flow suite.
4. mcp-drive (mcp-z)
A lightweight, focused Drive MCP that does one thing well: fast file search and read. It avoids feature bloat, which makes it a good choice when you only need the AI to find and fetch documents and you want a small, auditable codebase.
Best for: Minimalists, read-only research setups, security-conscious users who want to read the entire source before installing.
Auth: OAuth 2.0 with read scopes.
5. Pipeworx Google Drive MCP
Pipeworx ships a broad set of Google integrations, and its Drive MCP is built for automation pipelines — chaining Drive operations together with other steps. If your goal is not just chat but scripted agent workflows that move files around, Pipeworx is worth a look.
Best for: Automation-heavy workflows, agents that file and organize documents, pipeline builders.
Auth: OAuth 2.0, full Drive scope for write operations.
Quick Comparison Table
What You Can Do With a Google Drive MCP
Once a Drive MCP is connected, the workflows that emerge go well beyond "find a file":
- Summarize a folder. Point Claude at a folder of meeting notes or research PDFs and ask for a one-page synthesis. The MCP fetches each file; the model condenses them.
- Answer questions across documents. "Which of our proposals quoted under $10k?" The MCP searches, reads the matches, and the model extracts the answer.
- Draft from existing material. Ask the AI to read three past project briefs and draft a new one in the same structure and voice.
- Find the right version. Drive accumulates duplicates. "Find the most recent signed version of the NDA" is a one-line request instead of a manual hunt.
- Organize on command. With a write-capable server, the AI can create folders, move files, and rename documents to a consistent convention.
- Build a research base. Combine the Drive MCP with a Filesystem MCP to pull cloud docs and local files into the same conversation.
How to Install a Google Drive MCP
The universal recipe, using the reference server as the example:
- Create a Google Cloud project and enable the Google Drive API in the API library.
- Create OAuth credentials (Desktop app type) and download the
credentials.jsonfile. Store it outside any synced folder. - Add the server to your client config. In Claude Desktop, edit
claude_desktop_config.json:
{ "mcpServers": { "gdrive": { "command": "npx", "args": ["-y", "@modelcontextprotocol/server-gdrive"], "env": { "GDRIVE_CREDENTIALS_PATH": "/secure/path/credentials.json" } } } }
- Run the one-time login. The first launch opens a browser for Google OAuth and stores a refresh token locally so you do not have to log in again.
- Restart the client. The Drive tools register automatically and appear in the MCP sidebar.
For a Smithery-distributed server like Think41, the install collapses to a single command — Smithery handles the OAuth dance and config injection for you. The Skiln Config Generator can bundle Drive with other MCPs into one ready-to-paste config.
OAuth Scopes and Security
Drive holds real, sensitive documents, so scoping matters more here than with most MCPs:
- Default to read-only. The
drive.readonlyscope lets the AI search and read but never modify or delete. Use it for any research-only workflow. - Only grant write when you need it. The full
drivescope enables create, update, and delete. Reserve it for automation workflows where the AI genuinely needs to file documents. - Store credentials outside synced folders. A
credentials.jsonin a Dropbox or Drive-synced directory can leak. Keep it in a dedicated secrets path. - Use a service account for team drives. Give the service account access to only the specific folders the AI should see, not the whole shared drive.
These rules mirror the broader guidance in our MCP server security guide — worth reading before you connect any MCP to a billable or sensitive account.
Pairing Drive With the Rest of Google Workspace
A Drive MCP is most powerful as part of a Workspace stack. The common combination:
- Drive for file discovery and document reading.
- Sheets for cell-level spreadsheet work — see our Google Sheets MCP review.
- Gmail for reading and drafting email — see our Gmail MCP review.
With all three connected, you can ask the AI to "find the budget spreadsheet in Drive, pull the Q3 totals from the Finance sheet, and draft an email to the team with the numbers." Each MCP handles its slice; the model orchestrates. For a fuller picture of which servers belong on a fresh machine, see our roundup of the best desktop MCP servers.
Building your Google Workspace MCP stack? Browse 75,000+ MCP servers, skills, and agents — filter by productivity and pick what fits your workflow.
Browse Now →Frequently Asked Questions
What is a Google Drive MCP server?
A Google Drive MCP server is a Model Context Protocol server that connects an AI client like Claude Desktop, Claude Code, or Cursor to your Google Drive. It exposes tools for searching files, reading documents, listing folders, and (on some servers) creating or updating files. The AI can then pull a spreadsheet into context, summarize a folder of PDFs, or find the right doc without you leaving the chat.
Is the Google Drive MCP free?
Yes. Every Google Drive MCP server we rank is free and open source. You only pay for what you already pay Google — Drive storage and a normal Google account. The MCP itself adds no cost. Some servers run on a hosted gateway with optional paid tiers for teams, but the core self-hosted install is always free.
How does the Google Drive MCP authenticate?
Most Google Drive MCP servers use OAuth 2.0. You create a Google Cloud project, enable the Drive API, download a credentials.json file, and run a one-time browser login that stores a refresh token locally. A few hosted servers handle OAuth for you through a managed flow. Always grant the narrowest scope that works — drive.readonly is enough for search and read.
Can the Google Drive MCP edit my files?
It depends on the server and the OAuth scope you grant. Read-only servers (or read-only scopes) can only search and fetch. Servers that request the full drive scope can create, update, and delete files. If you only need the AI to read documents for context, use a read-only scope so an accidental instruction can never modify or delete real files.
Does the Google Drive MCP work with Google Docs and Sheets?
Yes, though the depth varies. Most Drive MCPs can list and read the contents of Google Docs by exporting them to text or markdown. For deep spreadsheet work — reading specific ranges, writing cells, running formulas — a dedicated Google Sheets MCP is better. Many teams run both: the Drive MCP for discovery and the Sheets MCP for cell-level work.
Which Google Drive MCP should I install first?
Start with the reference Google Drive MCP from the modelcontextprotocol servers collection if you want the best-documented, most widely-tested option. If you want something that bundles Drive with Gmail, Calendar, and Sheets in one server, pick a Google Workspace MCP instead. For read-only research workflows, any server with a drive.readonly scope will do.
Is it safe to connect Claude to my Google Drive?
It is, if you scope it correctly. Use a read-only OAuth scope for research, store the credentials file outside any synced folder, and never point the MCP at a Drive account that holds secrets you would not want an AI to read. For shared team drives, create a dedicated service account with access to only the folders the AI needs.
Where can I browse every Google Drive MCP indexed on Skiln?
Visit /browse and search 'google drive', or open /mcps and filter by the productivity category. Skiln indexes 75,000+ MCP servers across every major registry, including dozens of Google Drive variants, ranked by stars, maintenance, and README quality.
Last updated: June 20, 2026 · Skiln tracks new MCP releases daily across 13 source registries.