Back to Browse

Google Sheets MCP Server

Developer ToolsLow Risk10.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

MCP server for the Google Sheets API: read and write ranges, sheets, formatting, charts, sharing.

About

MCP server for the Google Sheets API: read and write ranges, sheets, formatting, charts, sharing.

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry. Trust signals: trusted author (16/16 approved).

3 files analyzed · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

What You'll Need

Set these up before or after installing:

Google OAuth2 client id (refresh-token flow).Optional

Environment variable: GOOGLE_SHEETS_CLIENT_ID

Google OAuth2 client secret (refresh-token flow). Treat it as a secret.Required

Environment variable: GOOGLE_SHEETS_CLIENT_SECRET

Google OAuth2 refresh token, exchanged for access tokens automatically. Treat it as a secret.Required

Environment variable: GOOGLE_SHEETS_REFRESH_TOKEN

Static OAuth2 access token (~1h lifetime) — alternative to the refresh-token trio, mostly for testing.Required

Environment variable: GOOGLE_SHEETS_ACCESS_TOKEN

Sheets API root override.Optional

Environment variable: GOOGLE_SHEETS_API_BASE

Per-request timeout in milliseconds.Optional

Environment variable: GOOGLE_SHEETS_TIMEOUT_MS

Retries on transient errors (429 always; 5xx/network for reads).Optional

Environment variable: GOOGLE_SHEETS_MAX_RETRIES

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-a1-x-tech-mcp-google-sheets": {
      "env": {
        "GOOGLE_SHEETS_API_BASE": "your-google-sheets-api-base-here",
        "GOOGLE_SHEETS_CLIENT_ID": "your-google-sheets-client-id-here",
        "GOOGLE_SHEETS_TIMEOUT_MS": "your-google-sheets-timeout-ms-here",
        "GOOGLE_SHEETS_MAX_RETRIES": "your-google-sheets-max-retries-here",
        "GOOGLE_SHEETS_ACCESS_TOKEN": "your-google-sheets-access-token-here",
        "GOOGLE_SHEETS_CLIENT_SECRET": "your-google-sheets-client-secret-here",
        "GOOGLE_SHEETS_REFRESH_TOKEN": "your-google-sheets-refresh-token-here"
      },
      "args": [
        "-y",
        "@a1-x-tech/mcp-google-sheets"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Google Sheets MCP

English | Русский

npm CI Glama License: MIT

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.

  • 20 tools. Search and create spreadsheets, read and write ranges, manage sheets, formatting, data validation, protected ranges, conditional formats, structured tables, charts and access.
  • 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 · Explore use cases · Open 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

You need Node.js 20+, a Google account and OAuth credentials from a Google Cloud project with the Google Sheets API enabled.

  1. Prepare Google OAuth access.
  2. Add the server to your AI app.
  3. Ask the read-only question above.

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:

codex mcp add google-sheets \
  --env GOOGLE_SHEETS_CLIENT_ID=your_client_id \
  --env GOOGLE_SHEETS_CLIENT_SECRET=your_client_secret \
  --env GOOGLE_SHEETS_REFRESH_TOKEN=your_refresh_token \
  -- npx -y @a1-x-tech/mcp-google-sheets@latest
codex mcp list

Codex MCP documentation

claude mcp add \
  --env GOOGLE_SHEETS_CLIENT_ID=your_client_id \
  --env GOOGLE_SHEETS_CLIENT_SECRET=your_client_secret \
  --env GOOGLE_SHEETS_REFRESH_TOKEN=your_refresh_token \
  --transport stdio --scope user google-sheets \
  -- npx -y @a1-x-tech/mcp-google-sheets@latest
claude mcp list

Claude Code MCP documentation

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:

{
  "mcpServers": {
    "google-sheets": {
      "command": "npx",
      "args": ["-y", "@a1-x-tech/mcp-google-sheets@latest"],
      "env": {
        "GOOGLE_SHEETS_CLIENT_ID": "your_client_id",
        "GOOGLE_SHEETS_CLIENT_SECRET": "your_client_secret",
        "GOOGLE_SHEETS_REFRESH_TOKEN": "your_refresh_token"
      }
    }
  }
}

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

Add this to ~/.cursor/mcp.json on macOS/Linux or %USERPROFILE%\.cursor\mcp.json on Windows:

{
  "mcpServers": {
    "google-sheets": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@a1-x-tech/mcp-google-sheets@latest"],
      "env": {
        "GOOGLE_SHEETS_CLIENT_ID": "your_client_id",
        "GOOGLE_SHEETS_CLIENT_SECRET": "your_client_secret",
        "GOOGLE_SHEETS_REFRESH_TOKEN": "your_refresh_token"
      }
    }
  }
}

Cursor MCP documentation

Run MCP: Open User Configuration and add:

{
  "servers": {
    "google-sheets": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@a1-x-tech/mcp-google-sheets@latest"],
      "env": {
        "GOOGLE_SHEETS_CLIENT_ID": "${input:sheets_client_id}",
        "GOOGLE_SHEETS_CLIENT_SECRET": "${input:sheets_client_secret}",
        "GOOGLE_SHEETS_REFRESH_TOKEN": "${input:sheets_refresh_token}"
      }
    }
  },
  "inputs": [
    { "type": "promptString", "id": "sheets_client_id", "description": "Google OAuth client ID" },
    { "type": "promptString", "id": "sheets_client_secret", "description": "Google OAuth client secret", "password": true },
    { "type": "promptString", "id": "sheets_refresh_token", "description": "Google OAuth refresh token", "password": true }
  ]
}

Check it with MCP: List Servers.

VS Code MCP documentation

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

OperationWhat happensConfirmation boundary
Read metadata or valuesReads structure and cellsNo change
Create a spreadsheetAdds a file to My DriveChanges Google Sheets
Write, batch-write or append valuesOverwrites cells or adds rowsChanges a spreadsheet
Format, freeze, borders, dimensions, validation, rules, tables, chartsChanges presentation, structure and rulesChanges a spreadsheet
Clear values or delete a sheet, rows or columnsRemoves data with no undo through the APIDestructive
Manage protected ranges and permissionsChanges who can open or edit the fileChanges access
Raw API requestCan call API methods without a dedicated toolPotentially 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 to edit spreadsheets; an API key is not enough.

  1. Create or select a Google Cloud project and enable the Google Sheets API. Also enable the Google Drive API if you want spreadsheet search and sharing.

  2. Configure the OAuth consent screen and create a Desktop app OAuth client.

  3. Authorize the Google account that owns or can edit the spreadsheets. The OAuth 2.0 Playground can obtain the refresh token when Use your own OAuth credentials is enabled.

  4. Request the minimal scope:

    https://www.googleapis.com/auth/spreadsheets
    

    It covers every Sheets tool. Only search_spreadsheets and manage_permissions need a Drive scope on top: https://www.googleapis.com/auth/drive, or drive.readonly for search alone, or drive.file for files created through this app.

Testing-mode OAuth refresh tokens can expire after seven days. Publish the OAuth app, or use an Internal app in a Workspace domain, when you need long-lived access. Treat the client secret and refresh token as passwords.

Configuration

VariableRequiredDescription
GOOGLE_SHEETS_CLIENT_IDYes*OAuth client ID.
GOOGLE_SHEETS_CLIENT_SECRETYes*OAuth client secret.
GOOGLE_SHEETS_REFRESH_TOKENYes*OAuth refresh token.
GOOGLE_SHEETS_ACCESS_TOKENYes*Short-lived (~1 h) alternative to the OAuth trio.
GOOGLE_SHEETS_API_BASENoGoogle Sheets API base URL override.
GOOGLE_SHEETS_TIMEOUT_MSNoPer-request timeout; default 60000 ms.
GOOGLE_SHEETS_MAX_RETRIESNoTemporary-error retries; default 3.

* Provide either the OAuth trio or an access token. Without credentials the server still starts and lists its tools; the first call names the variables to set.

Data, limits and background work

  • Requests go to Google. The local server refreshes Google OAuth tokens and calls the Sheets API — and, for spreadsheet search and sharing only, the Drive API. Its anonymous telemetry contains an installation ID, package version, AI client and platform versions, and tool names — never OAuth tokens, spreadsheet data, tool arguments or prompts. Set ASKADS_TELEMETRY=0 to opt out.
  • Google applies per-minute quotas. The documented limits are 300 reads and 300 writes per minute per project, and 60 of each per user; a batch call counts once however many ranges or requests it carries. A spreadsheet holds at most 10,000,000 cells. On 429, the server uses backoff; reads also retry after network and 5xx errors, while writes are not replayed after an uncertain failure.
  • There is no background polling. The server runs only when called. If your AI app supports scheduled tasks, it can check a spreadsheet periodically.

Technical documentation

Support

Found a bug or need a scenario? Create an issue or write in Telegram.

Reviews

No reviews yet

Be the first to review this server!