MCP server for the Google Sheets API — search spreadsheets, read and write ranges, manage sheets, formatting, validation, protected ranges, tables, charts and sharing. For Claude, Cursor, Codex and ot
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Documented (README)
claude mcp add mcp-google-sheets -- npx -y @a1-x-tech/mcp-google-sheets{
"mcpServers": {
"mcp-google-sheets": {
"command": "npx",
"args": ["-y", "@a1-x-tech/mcp-google-sheets"]
}
}
}MCP Servers overview
# <img src="./assets/a1-logo.svg" alt="A1" width="40"> Google Sheets MCP
**English** | [Русский](./README.ru.md)
[](https://www.npmjs.com/package/@a1-x-tech/mcp-google-sheets)
[](https://glama.ai/mcp/servers/A1-x-Tech/mcp-google-sheets)
[](https://github.com/A1-x-Tech/mcp-google-sheets/actions/workflows/ci.yml)
[](./LICENSE)
**A1 Google Sheets MCP** lets an AI app work with Google Sheets in plain language. Find a spreadsheet, read its data, write and append rows, shape sheets and formatting, build charts and share the result.
It uses the Google Sheets API with your Google account. It separates reading from writing, keeps destructive operations explicit and makes the limits of the Sheets API clear instead of implying that every spreadsheet task is possible.
- **26 tools.** Search and create spreadsheets, read and write ranges, manage sheets, formatting, data validation, protected ranges, conditional formats, structured tables, charts and access.
- **Connects from the conversation.** Say "connect Google Sheets": the server walks you through the OAuth client, catches Google's redirect on `127.0.0.1` with PKCE and keeps the tokens itself — no config files, no restart.
- **Writes are deliberate.** A write is never replayed after an ambiguous failure — a replayed append would duplicate rows — and destructive tools are marked so your AI client can ask first.
- **Sheets only.** Drive is an internal dependency for spreadsheet search and sharing alone; there is no generic Drive tool, and `raw_request` cannot reach Drive.
- **Minimal Google scopes.** `spreadsheets` covers every Sheets tool; a Drive scope is needed only for spreadsheet search and sharing.
Start with a read-only question:
> Find the quarterly budget spreadsheet and summarize what each of its sheets contains.
[Connect the server](#quick-start) · [Explore use cases](#what-you-can-ask-it-to-do) · [Open technical documentation](#technical-documentation)
---
## See it work in a minute
> **You:** Show me the structure of the sales report spreadsheet — its sheets, their sizes and frozen rows.
>
> **Assistant:** Shows the sheets with their sizes, frozen headers and the objects on them. Nothing changes.
>
> **You:** Prepare a “March” sheet as a copy of “February” and clear the numbers, keeping the layout.
>
> **Assistant:** Shows the plan — duplicate the sheet, rename it and clear the data ranges — then asks for confirmation before changing anything.
>
> **You:** Confirm.
>
> **Assistant:** Duplicates the sheet and clears the values. Formatting, data validation and frozen rows stay.
## Contents
- [Quick start](#quick-start)
- [What you can ask it to do](#what-you-can-ask-it-to-do)
- [How a spreadsheet changes](#how-a-spreadsheet-changes)
- [What can change](#what-can-change)
- [Getting access](#getting-access)
- [Configuration](#configuration)
- [Data, limits and background work](#data-limits-and-background-work)
- [Technical documentation](#technical-documentation)
- [Support](#support)
## Quick start
You need Node.js 20+ and a Google account. Credentials are not required at install time — the server connects from the conversation.
1. Add the server to your AI app.
2. Say "connect Google Sheets": the assistant walks you through [creating the OAuth client and approving access](#getting-access) without editing config files.
3. Ask the read-only question above.
<details open>
<summary><strong>Codex</strong></summary>
<br>
**In the app:** open **Settings → MCP servers**, select **Add server**, choose **STDIO**, enter the command `npx -y @a1-x-tech/mcp-google-sheets@latest` and environment variables `GOOGLE_SHEETS_CLIENT_ID`, `GOOGLE_SHEETS_CLIENT_SECRET`, `GOOGLE_SHEETS_REFRESH_TOKEN`, then select **Save** and **Restart**.
**From the command line:**
```bash
codex mcp add google-sheets \
-- npx -y @a1-x-tech/mcp-google-sheets@latest
```
```bash
codex mcp list
```
[Codex MCP documentation](https://learn.chatgpt.com/docs/extend/mcp?surface=cli)
</details>
<details>
<summary><strong>Claude Code</strong></summary>
<br>
```bash
claude mcp add \
--transport stdio --scope user google-sheets \
-- npx -y @a1-x-tech/mcp-google-sheets@latest
```
```bash
claude mcp list
```
[Claude Code MCP documentation](https://code.claude.com/docs/en/mcp)
</details>
<details>
<summary><strong>Claude Desktop</strong></summary>
<br>
The current official path is **Settings → Extensions**. For a custom desktop extension, open **Advanced settings → Extension Developer → Install Extension…**, select a `.mcpb` file and follow the prompts.
This repository currently publishes an npm stdio package and does not contain a `.mcpb` bundle. For Claude Desktop builds that still support local configuration, use the following JSON stdio configuration as a fallback:
```json
{
"mcpServers": {
"google-sheets": {
"command": "npx",
"args": ["-y", "@a1-x-tech/mcp-google-sheets@latest"]
}
}
}
```
In those builds, save it to `~/Library/Application Support/Claude/claude_desktop_config.json` on macOS or `%APPDATA%\Claude\claude_desktop_config.json` on Windows.
[Claude Desktop MCP documentation](https://support.claude.com/en/articles/10949351-getting-started-with-local-mcp-servers-on-claude-desktop)
</details>
<details>
<summary><strong>Cursor</strong></summary>
<br>
Add this to `~/.cursor/mcp.json` on macOS/Linux or `%USERPROFILE%\.cursor\mcp.json` on Windows:
```json
{
"mcpServers": {
"google-sheets": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@a1-x-tech/mcp-google-sheets@latest"]
}
}
}
```
[Cursor MCP documentation](https://cursor.com/docs/mcp)
</details>
<details>
<summary><strong>VS Code</strong></summary>
<br>
Run **MCP: Open User Configuration** and add:
```json
{
"servers": {
"google-sheets": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@a1-x-tech/mcp-google-sheets@latest"]
}
}
}
```
Check it with **MCP: List Servers**.
[VS Code MCP documentation](https://code.visualstudio.com/docs/agent-customization/mcp-servers)
</details>
## What you can ask it to do
### Find and read data
- Find the newest spreadsheet with “budget” in the name and show its structure.
- Read `'Q3'!A1:F50` and summarize the totals.
- Show the formulas behind the Summary sheet.
### Update the numbers
- Write this table into `Sheet1!A1`, formulas included.
- Append today’s figures as a new row of the log.
- Update several ranges in one batch, or clear a draft range while keeping its formatting.
### Shape and present
- Add a “March” sheet, freeze the header row and make it bold.
- Highlight negative amounts in red with a conditional format and add borders.
- Build a column chart of revenue by month on its own sheet.
- Turn the data into a structured table and add a dropdown with data validation.
### Protect and share
- Protect the totals row so only I can edit it.
- Give a colleague edit access and everyone else read-only.
- Show who currently has access to the file.
## How a spreadsheet changes
1. Values tools address cells in **A1 notation** (`'Sheet name'!A1:C10`); structural tools (sheets, formatting, rules, tables, charts) address a numeric **sheetId** with 0-based indexes. `get_spreadsheet` supplies the ids — sheet titles are not addresses.
2. A write **overwrites** its range; `append_values` adds rows after the last data row; a `null` cell is skipped, not cleared.
3. `clear_values` empties values and formulas but keeps formatting, data validation, notes and merges. There is no undo through the API — deleting a sheet, rows or columns destroys their data.
4. Batch tools carry several ranges or requests in one call and count once against the quota; a `batchUpdate` is atomic — all of its requests apply or none do.
Some spreadsheet features have no dedicated tool: merged cells, named ranges, banding, filters, slicers, find-and-replace and gradient conditional-format rules go through `raw_request`, which is limited to the Sheets API origin. A new spreadsheet lands in the My Drive root — moving it into a folder is not covered, and `manage_permissions` cannot transfer ownership.
## What can change
| Operation | What happens | Confirmation boundary |
|---|---|---|
| Read metadata or values | Reads structure and cells | No change |
| Create a spreadsheet | Adds a file to My Drive | Changes Google Sheets |
| Write, batch-write or append values | Overwrites cells or adds rows | Changes a spreadsheet |
| Format, freeze, borders, dimensions, validation, rules, tables, charts | Changes presentation, structure and rules | Changes a spreadsheet |
| Clear values or delete a sheet, rows or columns | Removes data with no undo through the API | Destructive |
| Manage protected ranges and permissions | Changes who can open or edit the file | Changes access |
| Raw API request | Can call API methods without a dedicated tool | Potentially destructive |
The AI client controls confirmation prompts. The server marks reads, writes and destructive tools so the client can distinguish an inspection from a live change.
## Getting access
Google Sheets requires OAuth 2.0; an API key is not enough. There are two ways in, and the first one needs no configuration files.
### Connect from the chat (recommended)
Say "connect Google Sheets" and the assistant runs the flow with you:
1. `setup_instructions` prints the checklist: create or select a Google Cloud project, enable **Google Sheets API**, configure the consent screen and create a **Desktop app** OAuth client.
2. Download that client's JSON ("Download JSON") and give the assistant its **path** — `set_client` stores it owner-only. The secret never goWhat people ask about mcp-google-sheets
What is A1-x-Tech/mcp-google-sheets?
+
A1-x-Tech/mcp-google-sheets is mcp servers for the Claude AI ecosystem. MCP server for the Google Sheets API — search spreadsheets, read and write ranges, manage sheets, formatting, validation, protected ranges, tables, charts and sharing. For Claude, Cursor, Codex and ot It has 1 GitHub stars and its last recorded update is dated 2026-09-20.
How do I install mcp-google-sheets?
+
You can install mcp-google-sheets by cloning the repository (https://github.com/A1-x-Tech/mcp-google-sheets) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is A1-x-Tech/mcp-google-sheets safe to use?
+
Our security agent has analyzed A1-x-Tech/mcp-google-sheets and assigned a Trust Score of 87/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.
Who maintains A1-x-Tech/mcp-google-sheets?
+
A1-x-Tech/mcp-google-sheets is maintained by A1-x-Tech. The last recorded GitHub activity is dated 2026-09-20, with 0 open issues.
Are there alternatives to mcp-google-sheets?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy mcp-google-sheets to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/a1-x-tech-mcp-google-sheets)<a href="https://claudewave.com/repo/a1-x-tech-mcp-google-sheets"><img src="https://claudewave.com/api/badge/a1-x-tech-mcp-google-sheets" alt="Featured on ClaudeWave: A1-x-Tech/mcp-google-sheets" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ
The fastest path to AI-powered full stack observability, even for lean teams.