Google Drive

live SaaS

Google Drive MCP Pack

5 tools
0ms auth
free tier 50 calls/day

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

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/google_drive/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
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.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("drive_list_files", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("google drive mcp pack");