Skip to main content

MCP Server for Google Sheets API

Project description

yuppie-mcp-google-sheets

Google Sheets MCP Server — 让 AI 助手通过 MCP 协议操作 Google Sheets 电子表格和 Drive 文件。

特性

  • Drive 文件操作:列出文件夹文件、按文件名过滤排序、存储用量查询
  • 工作表管理:创建、删除、复制、调整大小、清空
  • 数据操作:范围读写、批量写入、区域清除、Visualization API SQL 查询
  • 格式设置:筛选器、数据验证(下拉列表)、行高
  • 表格管理:创建、删除、查询表格(Table)
  • 快捷操作:列过滤、批次索引、批量更新、批量追加、CSV 同步、按批次读取
  • 鉴权:基于 Google 服务账号,base64 编码凭据

快速开始

准备凭据

  1. Google Cloud Console 创建服务账号
  2. 为该服务账号生成 JSON 密钥
  3. 下载 JSON 文件并 base64 编码:
base64 -i your-credentials.json

Claude Code

.mcp.json 中添加:

{
  "mcpServers": {
    "google-sheets": {
      "type": "stdio",
      "command": "uvx",
      "args": ["--refresh", "yuppie-mcp-google-sheets"],
      "env": {
        "GOOGLE_CREDENTIALS_B64": "<your-base64-credentials>",
        "GOOGLE_APPS_SCRIPT_URL": "<your_google_apps_script_url_here>"
      }
    }
  }
}

Cursor

~/.cursor/mcp.json 中添加同上配置。

Cherry Studio / Claude Desktop / OpenCode

参照上方 env 字段,按各自 MCP 配置格式填入即可。

环境变量

变量 必填 默认值 说明
GOOGLE_CREDENTIALS_B64 - Google 服务账号 JSON 密钥的 base64 编码
GOOGLE_APPS_SCRIPT_URL - Google Apps Script URL,gsheets_copy_file 需要

可用工具(共 28 个)

Drive 文件

工具 说明
gsheets_list_files 列出 Drive 文件夹中的文件
gsheets_filter_and_sort_files 按文件名过滤和排序
gsheets_get_storage_quota 查询 Drive 存储配额

工作表管理

工具 说明
gsheets_get_worksheet 获取工作表信息
gsheets_create_worksheet 创建工作表
gsheets_delete_worksheet 删除工作表
gsheets_duplicate_worksheet 复制工作表

数据操作

工具 说明
gsheets_update_data 更新工作表数据
gsheets_batch_update_data 批量分块写入数据
gsheets_batch_clear 批量清除区域
gsheets_visualization_query SQL 风格查询数据

格式设置

工具 说明
gsheets_set_basic_filter 设置筛选器
gsheets_set_data_validation 设置下拉列表
gsheets_set_row_height 设置行高

表格管理

工具 说明
gsheets_get_tables 获取表格列表
gsheets_create_table 创建表格
gsheets_delete_table 删除表格
gsheets_delete_table_by_name 按名称删除表格

快捷操作

工具 说明
gsheets_filter_columns 只保留指定列,删除其余列
gsheets_set_batch_index 按列设置批次索引
gsheets_set_header_list 写入新表头
gsheets_get_column_last_value 获取列最后一个非空值
gsheets_get_rows_by_batch 按批次读取行
gsheets_batch_update 批量更新行
gsheets_batch_append 批量追加行
gsheets_clear_sheet_content 清空工作表内容(不移除行)
gsheets_clear_sheet 清空工作表数据(删除行)
gsheets_sync_from_file 从 CSV 文件同步数据

测试与调试

uv pip install -e ".[dev]"
uv run pytest -v

使用 MCP Inspector 调试(需先在 .env 配置 GOOGLE_CREDENTIALS_B64):

npx @modelcontextprotocol/inspector uv run yuppie-mcp-google-sheets

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

yuppie_mcp_google_sheets-0.1.2.tar.gz (22.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

yuppie_mcp_google_sheets-0.1.2-py3-none-any.whl (33.1 kB view details)

Uploaded Python 3

File details

Details for the file yuppie_mcp_google_sheets-0.1.2.tar.gz.

File metadata

  • Download URL: yuppie_mcp_google_sheets-0.1.2.tar.gz
  • Upload date:
  • Size: 22.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.16 {"installer":{"name":"uv","version":"0.9.16","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for yuppie_mcp_google_sheets-0.1.2.tar.gz
Algorithm Hash digest
SHA256 af5fd25d4ab02667b407a7cfaae80d50d625d1a468ff4962821d84a63da0220c
MD5 22b7a7f32475f3d8542adbe553de8719
BLAKE2b-256 5905b54b6df8fda0688cab33f26040994a4a4c113365f02172191d3d387d7c61

See more details on using hashes here.

File details

Details for the file yuppie_mcp_google_sheets-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: yuppie_mcp_google_sheets-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 33.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.16 {"installer":{"name":"uv","version":"0.9.16","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for yuppie_mcp_google_sheets-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 21c8328593817ca1c3bc171307d53f321c9d2bfd364cddb20d32ec7cc5ddfd49
MD5 7571dbb6c1990071e3f3e09f8d332ee8
BLAKE2b-256 e8fafe8184d81270ce3cf4cdfb89867ed5618c81c00c6e00f503455fb3c63fcb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page