Help us improve
Share bugs, ideas, or general feedback.
From gogcli
Use when the user asks to read, write, or manage Google Sheets. Also triggers for requests involving Google Sheets data like "read my spreadsheet", "update a cell", "append rows", "create a spreadsheet", or "find and replace in Sheets". Broader Google service support (Gmail, Calendar, Drive) can be added via future service modules.
How this skill is triggered — by the user, by Claude, or both
Slash command
/gogcli-mcp:gogcliThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
MCP server wrapping [gogcli](https://github.com/openclaw/gogcli) — provides Claude with access to Google Sheets (and a scaffold for Gmail, Calendar, Drive, and more).
Share bugs, ideas, or general feedback.
MCP server wrapping gogcli — provides Claude with access to Google Sheets (and a scaffold for Gmail, Calendar, Drive, and more).
gog --help works in your shell)Add to .mcp.json in your project:
{
"mcpServers": {
"gogcli": {
"command": "node",
"args": ["/path/to/gogcli-mcp/dist/index.js"],
"cwd": "/path/to/gogcli-mcp",
"env": {
"GOG_ACCOUNT": "you@gmail.com"
}
}
}
}
{
"mcpServers": {
"gogcli": {
"command": "npx",
"args": ["-y", "gogcli-mcp"],
"env": {
"GOG_ACCOUNT": "you@gmail.com"
}
}
}
}
GOG_ACCOUNT is optional — omit it to use gogcli's configured default account. Pass it per-tool-call to target a specific account dynamically.
| Tool | What it does |
|---|---|
gog_sheets_get | Read values from a range |
gog_sheets_update | Write values to a range |
gog_sheets_append | Append rows after existing data |
gog_sheets_clear | Clear values in a range |
gog_sheets_metadata | Get title, tabs, named ranges |
gog_sheets_create | Create a new spreadsheet |
gog_sheets_find_replace | Find and replace across a spreadsheet |
gog_sheets_run | Run any gog sheets subcommand (escape hatch) |
All tools accept an optional account parameter to override the default Google account for that call.
npx claudepluginhub chrischall/mcp-marketplace --plugin gogcli-mcpCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.