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 дней

120 пометок за 30 дней · Последняя пометка: 22 сент. 2026 г.

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

2026-08-24: работает 4, частично 0, сломан 02026-08-25: работает 4, частично 0, сломан 02026-08-26: работает 4, частично 0, сломан 02026-08-27: работает 4, частично 0, сломан 02026-08-28: работает 4, частично 0, сломан 02026-08-29: работает 4, частично 0, сломан 02026-08-30: работает 4, частично 0, сломан 02026-08-31: работает 4, частично 0, сломан 02026-09-01: работает 4, частично 0, сломан 02026-09-02: работает 4, частично 0, сломан 02026-09-03: работает 4, частично 0, сломан 02026-09-04: работает 4, частично 0, сломан 02026-09-05: работает 4, частично 0, сломан 02026-09-06: работает 4, частично 0, сломан 02026-09-07: работает 4, частично 0, сломан 02026-09-08: работает 4, частично 0, сломан 02026-09-09: работает 4, частично 0, сломан 02026-09-10: работает 4, частично 0, сломан 02026-09-11: работает 4, частично 0, сломан 02026-09-12: работает 4, частично 0, сломан 02026-09-13: работает 4, частично 0, сломан 02026-09-14: работает 4, частично 0, сломан 02026-09-15: работает 4, частично 0, сломан 02026-09-16: работает 4, частично 0, сломан 02026-09-17: работает 4, частично 0, сломан 02026-09-18: работает 4, частично 0, сломан 02026-09-19: работает 4, частично 0, сломан 02026-09-20: работает 4, частично 0, сломан 02026-09-21: работает 4, частично 0, сломан 02026-09-22: работает 2, частично 0, сломан 0
2026-08-242026-09-22
работаетчастичносломан
Пометки по дням (30 дней)
dateработаетчастичносломан
2026-08-24400
2026-08-25400
2026-08-26400
2026-08-27400
2026-08-28400
2026-08-29400
2026-08-30400
2026-08-31400
2026-09-01400
2026-09-02400
2026-09-03400
2026-09-04400
2026-09-05400
2026-09-06400
2026-09-07400
2026-09-08400
2026-09-09400
2026-09-10400
2026-09-11400
2026-09-12400
2026-09-13400
2026-09-14400
2026-09-15400
2026-09-16400
2026-09-17400
2026-09-18400
2026-09-19400
2026-09-20400
2026-09-21400
2026-09-22200

Инструменты сервера · 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 `textContent` for text content. For non-UTF8 contents, use the `base64Content` 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 `contentMimeType` 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 `disableConversionToGoogleType` 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 specifies the desired export mime type. When the field is unset, defaults to plain text types (e.g. `text/plain`, `text/csv`). 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. Context window token management can be tuned via `snippetVerbosity` (default is `SnippetVerbosity.DETAILED`) or if only metadata is needed, use `excludeContentSnippets`. 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` if orderBy is not set or set to an unsupported value. Context window token management can be tuned via `snippetVerbosity` (default is `SnippetVerbosity.DETAILED`) or if only metadata is needed, use `excludeContentSnippets`. 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 known Drive file, and if specified, its comments. REQUIREMENTS & WORKFLOW: - `fileId` is required. You MUST pass an exact Drive file ID returned by a previous discovery tool (`search_files` or `list_recent_files`) or provided explicitly in the user prompt. - NEVER guess, invent, or hallucinate a `fileId` string from a file title or name. - If given a file title, name, or topic without an explicit `fileId`, you MUST FIRST call `search_files` to find the file and retrieve its `fileId` before invoking this tool. 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 and specified, comment tags will be included in the content. Supported Mime Types: - `application/vnd.google-apps.document` (supports comments) - `application/vnd.google-apps.presentation` (supports comments

  • search_files

    Search for Drive files using a structured query (syntax: `query_term operator values`). Only terms in this list are supported. Combine clauses with `and`, `or`, `not`, and parentheses. String values must be single-quoted; escape embedded quotes as `\'`. Context window token management can be tuned via `snippetVerbosity` (default is `SnippetVerbosity.DETAILED`) or if only metadata is needed, use `excludeContentSnippets`. Do NOT include document type terms (e.g., 'presentation', 'slides', 'deck', 'document', 'doc', 'spreadsheet', 'sheet', 'pdf', 'folder') inside `title contains '...'` or `fullText contains '...'` clauses. Separate title keywords from file type terms. Instead map them to `mimeType` clauses in the query (e.g., 'slides' -> `mimeType = 'application/vnd.google-apps.presentation'`). Query terms & operators: - `title` (ops: contains, =, !=) — file title - `fullText` (ops: contains) — title or body text - `mimeType` (ops: contains, =, !=) — MIME type - `modifiedTime`, `vi

Отзывы

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