MCP server that provides AI assistants with direct access to Google Workspace (Drive, Docs, and Sheets) operations. Built with Python and the MCP protocol, it features OAuth authentication, configurable logging, and support for multiple transport modes (stdio, SSE, WebSocket). The server exposes tools for searching and creating files, managing documents and spreadsheets, and organizing content, making it valuable for users who need to interact with Google Workspace through AI assistants without manual API configuration.
Aún no hay reseñas. ¡Sé el primero en reseñar!
Inicia sesión para unirte a la conversación
Search files in Google Drive. Parameters: query (string, required), page_size (integer, optional)
Create a new folder in Google Drive. Parameters: name (string, required), parent_id (string, optional)
Create a new document in Google Docs. Parameters: title (string, required), content (string, optional)
Get the content of a document. Parameters: document_id (string, required)
Update the content of a document. Parameters: document_id (string, required), content (string, required)
Create a new spreadsheet in Google Sheets. Parameters: title (string, required), sheets (array, optional)
Get cell values from a spreadsheet. Parameters: spreadsheet_id (string, required), range (string, required)
Update cell values in a spreadsheet. Parameters: spreadsheet_id (string, required), range (string, required), values (array, required)