google drive.com
google drive.com logo

Google Drive

Search and access Google Drive files and folders via read-only API.

Created byApr 22, 2025

Google Drive server

This MCP server integrates with Google Drive to allow listing, reading, and searching over files.

Components

Tools

  • search

Resources

The server provides access to Google Drive files:
  • Files (gdrive:///<file_id>)

Getting started

  1. Create a new Google Cloud project
  1. Enable the Google Drive API
  1. Configure an OAuth consent screen ("internal" is fine for testing)
  1. Add OAuth scope https://www.googleapis.com/auth/drive.readonly
  1. Create an OAuth Client ID for application type "Desktop App"
  1. Download the JSON file of your client's OAuth keys
  1. Rename the key file to gcp-oauth.keys.json and place into the root of this repo (i.e. servers/gcp-oauth.keys.json)
Make sure to build the server with either npm run build or npm run watch.

Authentication

To authenticate and save credentials:
  1. Run the server with the auth argument: node ./dist auth
  1. This will open an authentication flow in your system browser
  1. Complete the authentication process
  1. Credentials will be saved in the root of this repo (i.e. servers/.gdrive-server-credentials.json)

Usage with Desktop App

To integrate this server with the desktop app, add the following to your app's server configuration:

Docker

Authentication:
Assuming you have completed setting up the OAuth application on Google Cloud, you can now auth the server with the following command, replacing /path/to/gcp-oauth.keys.json with the path to your OAuth keys file:
The command will print the URL to open in your browser. Open this URL in your browser and complete the authentication process. The credentials will be saved in the mcp-gdrive volume.
Once authenticated, you can use the server in your app's server configuration:

NPX

License

This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.

Google Drive server

This MCP server integrates with Google Drive to allow listing, reading, and searching over files.

Components

Tools

  • search

Resources

The server provides access to Google Drive files:
  • Files (gdrive:///<file_id>)

Getting started

  1. Create a new Google Cloud project
  1. Enable the Google Drive API
  1. Configure an OAuth consent screen ("internal" is fine for testing)
  1. Add OAuth scope https://www.googleapis.com/auth/drive.readonly
  1. Create an OAuth Client ID for application type "Desktop App"
  1. Download the JSON file of your client's OAuth keys
  1. Rename the key file to gcp-oauth.keys.json and place into the root of this repo (i.e. servers/gcp-oauth.keys.json)
Make sure to build the server with either npm run build or npm run watch.

Authentication

To authenticate and save credentials:
  1. Run the server with the auth argument: node ./dist auth
  1. This will open an authentication flow in your system browser
  1. Complete the authentication process
  1. Credentials will be saved in the root of this repo (i.e. servers/.gdrive-server-credentials.json)

Usage with Desktop App

To integrate this server with the desktop app, add the following to your app's server configuration:

Docker

Authentication:
Assuming you have completed setting up the OAuth application on Google Cloud, you can now auth the server with the following command, replacing /path/to/gcp-oauth.keys.json with the path to your OAuth keys file:
The command will print the URL to open in your browser. Open this URL in your browser and complete the authentication process. The credentials will be saved in the mcp-gdrive volume.
Once authenticated, you can use the server in your app's server configuration:

NPX

License

This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.