Monorepo of 6 MCP servers wrapping the gogcli tool for Google Workspace automation:
gogcli-mcp — Sheets-focused umbrella (also exposes some Docs + Drive helpers)gogcli-mcp-docs — Google Docs: create, read, edit, find-replace, commentsgogcli-mcp-sheets — Google Sheets: cells, ranges, formulas, charts, named rangesgogcli-mcp-slides — Google Slides: deck + slide authoringgogcli-mcp-drive — Google Drive: search, upload, download, permissionsgogcli-mcp-classroom — Google Classroom: courses, assignments, submissions, rosterAll 6 share the same auth — they read from the gogcli account on your machine (gogcli auth add, gogcli auth run).
Each sub-package is published as a separate npm module. Install the ones you want:
{
"mcpServers": {
"gogcli-docs": {
"command": "npx",
"args": ["-y", "gogcli-mcp-docs"],
"env": { "GOG_ACCOUNT": "you@example.com" }
},
"gogcli-sheets": {
"command": "npx",
"args": ["-y", "gogcli-mcp-sheets"]
}
}
}
Or all-in-one via the umbrella:
{ "mcpServers": { "gogcli": { "command": "npx", "args": ["-y", "gogcli-mcp"] } } }
Requires gogcli installed and authenticated:
gogcli auth add # opens browser OAuth flow for your Google account
gogcli auth list
Set GOG_ACCOUNT=you@example.com in the MCP env if you have multiple accounts. Set GOG_PATH only if gogcli isn't on your PATH.
Each sub-package exposes its own tools with a distinctive prefix (gog_docs_, gog_sheets_, etc.). See each package's own SKILL.md for the full list.
packages/*/SKILL.md contain per-API detail.共 9 个版本