Google Drive
live SaaSGoogle Drive MCP Pack
Tools
drive_list_files List files in Google Drive. Optionally filter with a search query using Drive query syntax.
No parameters required.
Try it
drive_get_file Get metadata for a specific Google Drive file by ID. Returns name, mimeType, size, owners, permissions, and more.
No parameters required.
Try it
drive_get_content Download or export the content of a Google Drive file. For Google Docs/Sheets/Slides, exports to a specified format. For binary files, returns the raw content.
No parameters required.
Try it
drive_create_file Create a new file in Google Drive with the given name, content, and MIME type.
No parameters required.
Try it
drive_search Search Google Drive files using Drive query syntax. Supports operators like name, mimeType, fullText, modifiedTime, owners, etc.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/google_drive/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/google_drive/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"drive_list_files","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("drive_list_files", {}); // Or ask in plain English:
const answer = await px.ask("google drive mcp pack");