Skip to main content
Glama

ORCA Drive MCP

A Model Context Protocol (MCP) server that exposes a Google Drive folder over Streamable HTTP, deployed as a Vercel serverless function.

It reads Google Drive through a small Google Apps Script web app, so no Google Cloud Console or service account is needed.

Tools

Tool

Description

list_files

List files in a folder (defaults to DRIVE_FOLDER_ID)

search_files

Search files by name substring

get_file

Fetch metadata for a single file by ID

read_file

Read text content of a file (JSON, CSV, TXT, etc.)

Related MCP server: mcp-server-drive

1. Create the Apps Script backend

  1. Go to https://script.google.com and create a New project.

  2. Delete the placeholder code and paste the contents of apps-script.js.

  3. Click Deploy > New deployment:

    • Type: Web app

    • Execute as: Me

    • Who has access: Anyone

  4. Click Deploy, authorize the script (allow it to access your Drive).

  5. Copy the Web app URL ending in /exec (e.g. https://script.google.com/macros/s/AKfycb.../exec).

Open the /exec URL once in your browser and authorize it so the script can access your Drive files.

2. Configure environment variables

Copy .env.example to .env (local dev) and set the same values in Vercel (Project > Settings > Environment Variables):

Variable

Description

APPS_SCRIPT_URL

The Apps Script /exec URL from step 1

DRIVE_FOLDER_ID

Default folder ID to list

3. Run locally

npm install
vercel dev

Test with the MCP Inspector:

npx @modelcontextprotocol/inspector

Use transport Streamable HTTP and URL http://localhost:3000/.

4. Deploy to Vercel

vercel --prod

Your endpoint will be https://<project>.vercel.app/.

5. Connect a client

Claude Desktop (claude_desktop_config.json):

{
  "mcpServers": {
    "orca-drive": {
      "type": "http",
      "url": "https://<project>.vercel.app/"
    }
  }
}
F
license - not found
Not graded
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • Google Docs MCP Pack — read, create, and edit Google Docs via OAuth.

  • OCR, transcription, file extraction, and image generation for AI agents via MCP.

  • Search your AI chat history (ChatGPT, Claude, Codex) from any MCP client. Remote, private, read-only

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/saydurrahman-ORCA/orca-drive-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server