Google Drive MCP Server

Filesystemstdio
Repository

A Model Context Protocol server for Google Drive that lets AI assistants list, search, and read files stored in Drive, with automatic export of Google Docs, Sheets, Slides, and Drawings to readable formats. Authenticates via OAuth 2.0 and exposes Drive files as MCP resources so agents can ground their answers in your documents without copying data into chat first.

Bağlan

Bu yapılandırmayı şuraya ekleyin: .claude/mcp.json

{
  "mcpServers": {
    "google-drive": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-gdrive"
      ],
      "env": {
        "GDRIVE_CREDENTIALS_PATH": "<YOUR_GDRIVE_CREDENTIALS_PATH>"
      }
    }
  }
}

Araçlar (2)

gdrive_search

Search for files in Google Drive matching a query string.

{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Full-text search query for Drive files"
    }
  }
}

gdrive_read_file

Read the contents of a Google Drive file, exporting Google-native formats to text.

{
  "type": "object",
  "required": [
    "file_id"
  ],
  "properties": {
    "file_id": {
      "type": "string",
      "description": "The Google Drive file ID to read"
    }
  }
}

Kaynaklar

Bu sunucu herhangi bir kaynak sunmuyor.

Prompt'lar

Bu sunucu herhangi bir prompt sunmuyor.

Sunucu bilgileri

Yazar
Anthropic (@modelcontextprotocol)
Repository
https://github.com/modelcontextprotocol/servers
Lisans
MIT
Yıldızlar
0
Son güncelleme
12 Haziran 2026