
Google Drive 集成
STDIOOfficial集成谷歌云盘实现文件管理和搜索
集成谷歌云盘实现文件管理和搜索
This MCP server integrates with Google Drive to allow listing, reading, and searching over files.
query
(string): Search queryThe server provides access to Google Drive files:
gdrive:///<file_id>
)
https://www.googleapis.com/auth/drive.readonly
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
.
To authenticate and save credentials:
auth
argument: node ./dist auth
servers/.gdrive-server-credentials.json
)To integrate this server with the desktop app, add the following to your app's server configuration:
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:
docker run -i --rm --mount type=bind,source=/path/to/gcp-oauth.keys.json,target=/gcp-oauth.keys.json -v mcp-gdrive:/gdrive-server -e GDRIVE_OAUTH_PATH=/gcp-oauth.keys.json -e "GDRIVE_CREDENTIALS_PATH=/gdrive-server/credentials.json" -p 3000:3000 mcp/gdrive auth
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:
{ "mcpServers": { "gdrive": { "command": "docker", "args": ["run", "-i", "--rm", "-v", "mcp-gdrive:/gdrive-server", "-e", "GDRIVE_CREDENTIALS_PATH=/gdrive-server/credentials.json", "mcp/gdrive"] } } }
{ "mcpServers": { "gdrive": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-gdrive" ], "env": { "GDRIVE_CREDENTIALS_PATH": "/path/to/.gdrive-server-credentials.json" } } } }
For quick installation, use one of the one-click install buttons below..
For manual installation, add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing Ctrl + Shift + P
and typing Preferences: Open User Settings (JSON)
.
Optionally, you can add it to a file called .vscode/mcp.json
in your workspace. This will allow you to share the configuration with others.
Note that the
mcp
key is not needed in the.vscode/mcp.json
file.
{ "mcp": { "servers": { "gdrive": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-gdrive" ], "env": { "GDRIVE_CREDENTIALS_PATH": "/path/to/.gdrive-server-credentials.json" } } } } }
{ "mcp": { "servers": { "gdrive": { "command": "docker", "args": [ "run", "-i", "--rm", "-v", "mcp-gdrive:/gdrive-server", "-e", "GDRIVE_CREDENTIALS_PATH=/gdrive-server/credentials.json", "mcp/gdrive" ] } } } }
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.