Google Sheets MCP Server
Productivitystdiov0.3.0
MCP server for Google Sheets. Lets AI agents read and write cell ranges, create and update spreadsheets and tabs, append rows, and apply formatting via the Sheets API with OAuth. Useful for lightweight data entry, reporting, dashboards, and automating spreadsheet-driven workflows.
Подключение
Добавьте эту конфигурацию в .claude/mcp.json
{
"mcpServers": {
"google-sheets": {
"command": "uvx",
"args": [
"mcp-google-sheets"
],
"env": {
"GOOGLE_APPLICATION_CREDENTIALS": "<YOUR_GOOGLE_APPLICATION_CREDENTIALS>"
}
}
}
}Инструменты (2)
read_range
Read values from a range in a Google spreadsheet.
{
"type": "object",
"required": [
"spreadsheet_id",
"range"
],
"properties": {
"range": {
"type": "string",
"description": "A1 notation range (e.g., Sheet1!A1:C10)"
},
"spreadsheet_id": {
"type": "string",
"description": "The spreadsheet ID"
}
}
}update_range
Write values to a range in a Google spreadsheet.
{
"type": "object",
"required": [
"spreadsheet_id",
"range",
"values"
],
"properties": {
"range": {
"type": "string",
"description": "A1 notation range to write"
},
"values": {
"type": "array",
"items": {
"type": "array",
"items": {}
},
"description": "2D array of cell values"
},
"spreadsheet_id": {
"type": "string",
"description": "The spreadsheet ID"
}
}
}Ресурсы
Этот сервер не предоставляет ресурсы.
Промпты
Этот сервер не предоставляет промпты.
Сведения о сервере
- Автор
- Xing Xing (@xing5)
- Репозиторий
- https://github.com/xing5/mcp-google-sheets
- Лицензия
- MIT
- Версия
- 0.3.0
- Звёзды
- 680
- Последнее обновление
- 9 июля 2026 г.