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)