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.
아직 리뷰가 없습니다. 첫 번째 리뷰를 작성해 보세요!
대화에 참여하려면 로그인하세요
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 content of a document. Parameters: document_id (string, required)
Update content of a document. Parameters: document_id (string, required), content (string, required)
Create a new spreadsheet. Parameters: title (string, required), sheets (array, optional)
Get values from cells in a spreadsheet. Parameters: spreadsheet_id (string, required), range (string, required)
Update values in cells of a spreadsheet. Parameters: spreadsheet_id (string, required), range (string, required), values (array, required)