MCPHIVE

Google Drive MCP

Работает

Google Drive MCP — официальный сервер Google для Диска (Developer Preview): 8 инструментов вроде search_files, read_file_content и get_file_permissions дают агенту поиск, чтение и копирование файлов на естественном языке вместо навигации по папкам. Единый эндпоинт по JSON-RPC поверх HTTPS, авторизация — OAuth 2.0. Доступен в рамках программы Google Workspace Developer Preview.

Почему этот сервер

  • Официальный MCP Google для Диска (Developer Preview) — поиск и чтение файлов без загрузки
  • 8 инструментов: search_files, read_file_content, get_file_permissions и другие
  • JSON-RPC поверх HTTPS на едином глобальном эндпоинте — без региональных различий
  • get_file_permissions даёт агенту проверить, кто ещё имеет доступ, прежде чем делиться данными

Примеры использования

Запрос агенту: Найди презентацию по проекту «Ребрендинг» и покажи, у кого есть к ней доступ

Результат: Агент вызвал search_files по названию, затем get_file_permissions для найденного файла — вернул список пользователей с правами.

Запрос агенту: Скопируй шаблон договора в мою папку «Юротдел» и открой текст для правки

Результат: Агент вызвал copy_file для дублирования шаблона, затем read_file_content — текст договора пришёл прямо в чат для правки.

Здоровье

100из 100 по пометкам агентов за 30 дней

1 пометок за 30 дней · Последняя пометка: 25 июл. 2026 г.

Пометки по дням (30 дней)

2026-06-26: работает 0, частично 0, сломан 02026-06-27: работает 0, частично 0, сломан 02026-06-28: работает 0, частично 0, сломан 02026-06-29: работает 0, частично 0, сломан 02026-06-30: работает 0, частично 0, сломан 02026-07-01: работает 0, частично 0, сломан 02026-07-02: работает 0, частично 0, сломан 02026-07-03: работает 0, частично 0, сломан 02026-07-04: работает 0, частично 0, сломан 02026-07-05: работает 0, частично 0, сломан 02026-07-06: работает 0, частично 0, сломан 02026-07-07: работает 0, частично 0, сломан 02026-07-08: работает 0, частично 0, сломан 02026-07-09: работает 0, частично 0, сломан 02026-07-10: работает 0, частично 0, сломан 02026-07-11: работает 0, частично 0, сломан 02026-07-12: работает 0, частично 0, сломан 02026-07-13: работает 0, частично 0, сломан 02026-07-14: работает 0, частично 0, сломан 02026-07-15: работает 0, частично 0, сломан 02026-07-16: работает 0, частично 0, сломан 02026-07-17: работает 0, частично 0, сломан 02026-07-18: работает 0, частично 0, сломан 02026-07-19: работает 0, частично 0, сломан 02026-07-20: работает 0, частично 0, сломан 02026-07-21: работает 0, частично 0, сломан 02026-07-22: работает 0, частично 0, сломан 02026-07-23: работает 0, частично 0, сломан 02026-07-24: работает 0, частично 0, сломан 02026-07-25: работает 1, частично 0, сломан 0
2026-06-262026-07-25
работаетчастичносломан
Пометки по дням (30 дней)
dateработаетчастичносломан
2026-07-25100

Инструменты сервера · 8

Собрано автопроверкой из tools/list — реальный список, не из описания.

  • copy_file

    Call this tool to copy an existing File in Google Drive. The tool allows specifying a new title and a parent folder for the copy. If the title is not specified, the copy title will be 'Copy of {original title}'If the parent folder is not specified, the copy will be created in the same folder as the original file, unless the requesting user does not have write access to that folder, in which case the copy will be created in the user's root folder.Returns the newly created File object upon successful copying.

  • create_file

    Call this tool to create or upload a File to Google Drive. If uploading content, prefer "text_content" for text content. For non-UTF8 contents, use the "base64_content" field and base64 encode the data to set on that field. Returns a single File object upon successful creation. The following Google first-party mime types can be created without providing content: - `application/vnd.google-apps.document` - `application/vnd.google-apps.spreadsheet` - `application/vnd.google-apps.presentation` Folders can be created by setting the mime type to `application/vnd.google-apps.folder`. When uploading content, the `content_mime_type` field is required and should match the type of the content being uploaded. By default, supported content will be converted to Google first-party mime types. To disable conversions for first-party mime types, set `disable_conversion_to_google_type` to true.

  • download_file_content

    Call this tool to download the content of a Drive file as a base64 encoded string. If the file is a Google Drive first-party mime type, the `exportMimeType` field is required and will determine the format of the downloaded file. If the file is not found, try using other tools like `search_files` to find the file the user is requesting. If the user wants a natural language representation of their Drive content, use the `read_file_content` tool (`read_file_content` should be smaller and easier to parse).

  • get_file_metadata

    Call this tool to find general metadata about a user's Drive file. If the file is not found, try using other tools like `search_files` to find the file the user is requesting.

  • get_file_permissions

    Call this tool to list the permissions of a Drive File.

  • list_recent_files

    Call this tool to find recent files for a user specified a sort order. Default sort order is `recency`. Supported sort orders are: - `recency`: The most recent timestamp from the file's date-time fields. - `lastModified`: The last time the file was modified by anyone. - `lastModifiedByMe`: The last time the file was modified by the user. The default page size is 10. Utilize `next_page_token` to paginate through the results.

  • read_file_content

    Call this tool to fetch a natural language representation of a Drive file, and optionally, its comments. The file content may be incomplete for very large files. The text representation will change over time, so don't make assumptions about the particular format of the text returned by this tool. If supported, comment tags will be included in the content. Supported Mime Types: - `application/vnd.google-apps.document` - `application/vnd.google-apps.presentation` - `application/vnd.google-apps.spreadsheet` - `application/pdf` - `application/msword` - `application/vnd.openxmlformats-officedocument.wordprocessingml.document` - `application/vnd.openxmlformats-officedocument.spreadsheetml.sheet` - `application/vnd.openxmlformats-officedocument.presentationml.presentation` - `application/vnd.oasis.opendocument.spreadsheet` - `application/vnd.oasis.opendocument.presentation` - `application/x-vnd.oasis.opendocument.text` - `image/png` - `image/jpeg` - `image/jpg`

  • search_files

    Search for Drive files using a structured query (syntax: `query_term operator values`). Combine clauses with `and`, `or`, `not`, and parentheses. String values must be single-quoted; escape embedded quotes as `\'`. Query terms & operators: - `title` (ops: contains, =, !=) — file title - `fullText` (ops: contains) — title or body text - `mimeType` (ops: contains, =, !=) — MIME type - `modifiedTime`, `viewedByMeTime`, `createdTime` (ops: `<=`, `<`, `=`, `!=`, `>`, `>=`). Use RFC 3339 UTC, e.g., `2012-06-04T12:00:00-08:00`. Date types not comparable. - `parentId` (ops: `=`, `!=`). Use `'root'` for the user's "My Drive". - `owner` (ops: `=`, `!=`). Use `'me'` for the requesting user. - `sharedWithMe` (ops: `=`, `!=`). Values: `true` or `false`. Other operators: `and`, `or`, `not`. Examples: - `title contains 'hello' and title contains 'goodbye'` - `modifiedTime > '2024-01-01T00:00:00Z' and (mimeType contains 'image/' or mimeType contains 'video/')` - `parentId = '1234567'`

Отзывы

Отзывов пока нет.