# Does Google Sheets have an MCP server?

**Yes — Official.** Google Sheets maintains an official MCP server.

> Developer Preview — access requires the Google Workspace Developer Preview Program.

## Facts

- Verdict: Official (Yes)
- Access: Remote server — Hosted by the vendor — no install, connect over HTTP with OAuth or a token.
- Endpoint: `https://sheetsmcp.googleapis.com/mcp/v1`
- Category: [Workplace & Productivity](https://mcpyet.com/category/workplace-productivity/)
- Verified against vendor docs: 2026-08-10
- GitHub data refreshed: 2026-08-11 (re-checked every 6 hours)

## The receipts

- **Vendor-hosted (remote):** `https://sheetsmcp.googleapis.com/mcp/v1` — a remote server run by Google Sheets itself, nothing to install. Documented at <https://developers.google.com/workspace/sheets/api/guides/configure-mcp-server>.
- **Community alternative:** [xing5/mcp-google-sheets](https://github.com/xing5/mcp-google-sheets) — ★ 980, pushed 2026-05-14. This MCP server integrates with your Google Drive and Google Sheets, to enable creating and modifying spreadsheets.

## How to connect it

Hosted by the vendor — no install, connect over HTTP with OAuth or a token.

### Claude Code

```sh
claude mcp add --transport http googlesheets https://sheetsmcp.googleapis.com/mcp/v1
```

Add `--scope user` to make it available in every project.

### Claude Desktop

1. Open **Settings → Connectors**
2. Click **Add custom connector**
3. Paste `https://sheetsmcp.googleapis.com/mcp/v1`
4. Finish the sign-in prompt, then enable it in the chat's tools menu

### Cursor

Add to `.cursor/mcp.json` in your project, or `~/.cursor/mcp.json` for every project:

```json
{
  "mcpServers": {
    "googlesheets": {
      "url": "https://sheetsmcp.googleapis.com/mcp/v1"
    }
  }
}
```

### VS Code

Add to `.vscode/mcp.json`, then pick the server from Copilot's agent-mode tools menu:

```json
{
  "servers": {
    "googlesheets": {
      "type": "http",
      "url": "https://sheetsmcp.googleapis.com/mcp/v1"
    }
  }
}
```

### ChatGPT

1. Enable **Developer mode** under Settings → Apps & Connectors → Advanced
2. Choose **Create** and paste `https://sheetsmcp.googleapis.com/mcp/v1`
3. Complete sign-in, then enable the connector in a new chat

## How we know

Official Google-hosted Sheets MCP server at sheetsmcp.googleapis.com (read cells, update values, formulas, batch updates) with OAuth 2.0, documented on developers.google.com.

- GitHub data refreshed 2026-08-11, then every 6 hours.
- Vendor docs verified on 2026-08-10.
- Corrections: hello@mcpyet.com.

## Also in Workplace & Productivity

- [Atlassian](https://mcpyet.com/mcp/atlassian.md) — Official (Yes)
- [Google Drive](https://mcpyet.com/mcp/google-drive.md) — Official (Yes)
- [Confluence](https://mcpyet.com/mcp/confluence.md) — Official (Yes)
- [ServiceNow](https://mcpyet.com/mcp/servicenow.md) — Official (Yes)
- [Excalidraw](https://mcpyet.com/mcp/excalidraw.md) — Official (Yes)
- [Asana](https://mcpyet.com/mcp/asana.md) — Official (Yes)

---

Source: https://mcpyet.com/mcp/google-sheets/ — data refreshed 2026-08-11
