Google Drive MCP
Access and manage your Google Drive files and folders.
Google Drive MCP
This project connects Claude Desktop to your Google Drive via the Model Context Protocol (MCP), allowing Claude to access and interact with your Drive files and folders securely.
Setup and Usage
Follow these steps in order to get the app running:
-
Get Google OAuth Credentials
- Go to the Google Cloud Console Credentials page to create a project and enable the Google Drive API.
- Create OAuth 2.0 Client IDs credentials with application type Desktop app.
- Note your Client ID, Client Secret, and set your Redirect URI to
http://localhost:3000.
-
Create a
.envFileIn the root of your project, create a
.envfile and add the following variables:
CLIENT_ID=your-client-id-here
CLIENT_SECRET=your-client-secret-here
REDIRECT_URI=http://localhost:3000
- Install Dependencies
npm install
- Generate Google API Token
npm run tokenGenerator
This will open a browser to authenticate with Google and save a token.json file in your project root.
- Build the project
npm run build
-
Install Claude Desktop (if not already installed)
Download and install Claude Desktop from https://claude.ai/download.
-
Configure Claude Desktop MCP Servers
In a text editor open the Claude Desktop config file at:
macOS/Linux:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Add the following MCP server configuration, adjusting the path to your build output and environment variables accordingly:
{
"mcpServers": {
"googleDrive": {
"command": "node",
"args": ["path/to/your/build/index.js"],
"env": {
"CLIENT_ID": "your-actual-client-id",
"CLIENT_SECRET": "your-actual-client-secret",
"REDIRECT_URI": "http://localhost:3000"
}
}
}
}
Save the file
- Restart Claude Desktop
Похожие серверы
AWS S3 MCP Server
An MCP server for managing files and buckets on AWS S3. Requires AWS credentials for authentication.
Storacha MCP Storage Server
An MCP server for Storacha hot storage, enabling AI applications to store and retrieve files using IPFS and CIDs.
MCP Backup Server
A server for backing up and restoring data for AI agents and code editing tools.
Qiniu MCP Server
Access Qiniu's cloud storage, intelligent multimedia services, and CDN operations via the Model Context Protocol.
dbx-mcp-server
An MCP server for interacting with Dropbox files and services.
WebDAV MCP Server
Perform CRUD operations on a WebDAV server with basic authentication.
RAGStack-Lambda
Serverless document and media processing with AI chat.
OSS MCP Server
A local server for uploading files to Alibaba Cloud Object Storage Service (OSS).
Remote Files MCP
MCP server for monitoring remote file sources, detecting new files, and extracting content. Works with any storage backend via rclone (70+ providers) or custom commands.
AIStor
An MCP server for interacting with AIStor and MinIO object stores.