Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables AI agents to read, write, and manage Google Sheets using the Google Sheets API v4.

README.md

Google Sheet MCP Server

An MCP (Model Context Protocol) server that allows AI agents to read, write, and manage Google Sheets using the Google Sheets API v4.

Features

  • List Sheets: Retrieve a list of all sheets in a spreadsheet with their names, IDs, and grid properties.
  • Read Content: Read data from specific sheets or ranges, returned as formatted Markdown tables.
  • Write Content: API to create sheets, append data, and add columns.
  • Manage Structure: Rename sheets and delete sheets, columns, or rows.

Prerequisites

  • Python: 3.12 or higher
  • Package Manager: uv (recommended) or pip
  • Google Cloud Project:
  • "Google Sheets API" enabled.
  • Service Account created with a JSON key file.
  • Access: The Service Account email MUST have "Editor" access to the target Google Sheet to perform write operations.

Getting service-account-key.json

  1. Create Project: Go to Google Cloud Console and create a new project.
  2. Enable API: Search for "Google Sheets API" and click Enable.
  3. Create Service Account:
  • Go to IAM & Admin > Service Accounts.
  • Click Create Service Account.
  • Name it (e.g., sheet-mcp-bot) and click Create and Continue.
  • Grant "Editor" role, then click Done.
  1. Generate Key:
  • Click on the newly created Service Account email.
  • Go to the Keys tab > Add Key > Create new key.
  • Select JSON and click Create.
  • The file will download automatically. Rename it to service-account-key.json.
  1. Share Sheet: Open your target Google Sheet, click Share, and paste the Service Account email (found in the JSON file under client_email) with Editor permissions.

Installation

  1. Clone/Open this repository.
  2. Install dependencies:
    uv sync
    # or
    pip install mcp pandas python-dotenv google-api-python-client google-auth

Configuration

  1. Service Account: Place your Google Service Account JSON key in the project root and name it service-account-key.json (or update .env to point to its path).
  2. Environment Variables: Create a .env file:
    SPREADSHEET_ID=your_spreadsheet_id_here
    SERVICE_ACCOUNT_FILE=service-account-key.json

Tip: The Spreadsheet ID is the long string in your sheet's URL: https://docs.google.com/spreadsheets/d/SPREADSHEET_ID/edit

Usage with MCP Clients

Option 1: Using uvx (Recommended)

This method allows you to run the server directly from GitHub without cloning the repository manually.

Add this configuration to your MCP settings file (e.g., claude_desktop_config.json or mcp_config.json):

{
  "mcpServers": {
    "google-sheet": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/vfh-tech/gsheet-mcp",
        "sheet-mcp"
      ],
      "env": {
        "SPREADSHEET_ID": "your_spreadsheet_id_here",
        "SERVICE_ACCOUNT_FILE": "C:\\path\\to\\your\\service-account-key.json"
      }
    }
  }
}

Option 2: Local Installation

If you prefer to clone the repository and run it locally:

{
  "mcpServers": {
    "google-sheet": {
      "command": "uv",
      "args": [
        "--directory",
        "/absolute/path/to/sheet-mcp",
        "run",
        "sheet-mcp"
      ],
      "env": {
        "SPREADSHEET_ID": "your_spreadsheet_id_here",
        "SERVICE_ACCOUNT_FILE": "service-account-key.json"
      }
    }
  }
}

Testing

A verification script is included to test the connection and tools:

uv run test_server.py

Tools Available

Read Operations

  • list_sheets(): Lists all sheets in the configured spreadsheet.
  • read_sheet_data(sheet_name: str, range_name: str = None, last_20_rows: bool = False): Reads data from the specified sheet. Set last_20_rows=True to read only the last 20 rows (plus header).

Write Operations

  • create_sheet(title: str): Creates a new sheet (tab).
  • rename_sheet(old_title: str, new_title: str): Renames an existing sheet.
  • append_data(sheet_name: str, values: List[List[Any]]): Appends rows of data to the bottom of a sheet.
  • add_column(sheet_name: str, header: str, values: List[Any] = None): Adds a new column to the right of the existing data, with an optional header and values.

Delete Operations (Destructive)

  • delete_sheet(sheet_name: str): Deletes an entire sheet.
  • delete_row(sheet_name: str, start_index: int, end_index: int): Deletes rows within a specified range.
  • delete_column(sheet_name: str, start_index: int, end_index: int): Deletes columns within a specified range.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Productivity servers.