AgentStack
MCP verified MIT Self-run

Mcp Server Spreadsheet

mcp-hosakakeigo-mcp-server-spreadsheet · by HosakaKeigo

MCP server for Google Sheet (spreadsheet) with Application Default Credentials Auth.

No reviews yet
0 installs
9 views
0.0% view→install

Install

$ agentstack add mcp-hosakakeigo-mcp-server-spreadsheet

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Mcp Server Spreadsheet? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

MCP Server for Google Spreadsheets

A Model Context Protocol (MCP) server implementation that integrates with Google Spreadsheets, allowing AI assistants to retrieve and modify spreadsheet data. This server enables Claude to interact with your Google Sheets data directly.

Demo

Features

This server provides the following tools for working with Google Spreadsheets:

  • get_sheets: Retrieve all sheet information from a Google Spreadsheet, including names, dimensions, and IDs
  • get_sheet_values: Retrieve values from a specific sheet with optional range specification
  • update_cells: Update values in a specific range of cells within a sheet
  • batch_update_cells: Update multiple ranges across different sheets in a single operation
  • add_sheet: Add a new sheet to an existing spreadsheet with customizable dimensions

Prerequisites

  • Node.js (v18 or higher)
  • Google Cloud project with the Google Sheets API enabled
  • Google Cloud authentication credentials
  • Claude Desktop (for integration with Claude)

Installation

  1. Clone this repository:

``bash git clone https://github.com/yourusername/mcp-server-spreadsheet.git cd mcp-server-spreadsheet ``

  1. Install dependencies:

``bash pnpm install ``

Authentication Setup

This server uses Google Cloud's Application Default Credentials for authentication to access Google Sheets.

  1. Install the Google Cloud CLI if you haven't already
  2. Log in and authorize access to Google Sheets:

``bash gcloud auth application-default login --scopes=openid,https://www.googleapis.com/auth/userinfo.email,https://www.googleapis.com/auth/cloud-platform,https://www.googleapis.com/auth/spreadsheets ``

>[!Tip] >- Ensure your Google Project's Sheet API is enabled. >- Don't forget --scopes option for gcloud auth application-default login

Building and Running

  1. Build the project:

``bash pnpm build ``

  1. Run the server:

``bash pnpm start ``

The server will start and listen for MCP commands via standard input/output.

Integration with Claude for Desktop

To use this server with Claude for Desktop:

  1. Make sure Claude for Desktop is installed and running
  1. Add the server to Claude for Desktop's configuration file (claude_desktop_config.json):

``json { "mcpServers": { "spreadsheet": { "command": "node", "args": ["/absolute/path/to/mcp-server-spreadsheet/build/index.js"], "env": { "GOOGLE_PROJECT_ID": "your-google-project-id", "GOOGLE_APPLICATION_CREDENTIALS": "/absolute/path/to/your/credentials.json" } } } } ``

  1. Restart Claude for Desktop to load the server

Usage Examples

Once integrated with Claude, you can use natural language to work with your spreadsheets. Here are some example prompts:

Retrieving Spreadsheet Information

Could you tell me what sheets are in this spreadsheet? https://docs.google.com/spreadsheets/d/YOUR_SPREADSHEET_ID/edit

Getting Data from a Sheet

Please show me the data from the "Sales" sheet in this spreadsheet: https://docs.google.com/spreadsheets/d/YOUR_SPREADSHEET_ID/edit

Updating Data

Update cells A1:B2 in the "Q1 Budget" sheet with these values: 
- Row 1: 1000, 2000
- Row 2: 3000, 4000
The spreadsheet URL is: https://docs.google.com/spreadsheets/d/YOUR_SPREADSHEET_ID/edit

Adding a New Sheet

Please add a new sheet called "Q2 Planning" to this spreadsheet: https://docs.google.com/spreadsheets/d/YOUR_SPREADSHEET_ID/edit

Available Tools

get_sheets

Retrieves information about all sheets in a spreadsheet.

Parameters:

  • spreadsheetUrl: URL or ID of the Google Spreadsheet

getsheetvalues

Retrieves values from a specific sheet in a spreadsheet.

Parameters:

  • spreadsheetUrl: URL or ID of the Google Spreadsheet
  • sheetName: Name of the sheet to retrieve data from
  • range (optional): Cell range in A1 notation (e.g., "A1:D5")

update_cells

Updates values in a specific range of cells.

Parameters:

  • spreadsheetUrl: URL or ID of the Google Spreadsheet
  • sheetName: Name of the sheet to update
  • range: Cell range in A1 notation (e.g., "A1:B2")
  • values: 2D array of values to write (each inner array represents a row)

batchupdatecells

Updates values in multiple ranges across different sheets in a single operation.

Parameters:

  • spreadsheetUrl: URL or ID of the Google Spreadsheet
  • updates: Array of update operations, each with:
  • sheetName: Name of the sheet to update
  • range: Cell range in A1 notation
  • values: 2D array of values to write

add_sheet

Adds a new sheet to an existing spreadsheet.

Parameters:

  • spreadsheetUrl: URL or ID of the Google Spreadsheet
  • sheetTitle: Title for the new sheet
  • rowCount (optional): Number of rows (default: 1000)
  • columnCount (optional): Number of columns (default: 26)

Development

Project Structure

  • src/index.ts: Main entry point
  • src/tools/: Individual MCP tool implementations
  • src/utils/: Utility functions and services
  • src/types/: TypeScript type definitions

Running Tests

pnpm test

Environment Variables

You can create a .env file in the project root with the following variables:

# Optional: Override Google API credentials path
GOOGLE_APPLICATION_CREDENTIALS=/path/to/credentials.json

# Optional: Debug mode
DEBUG=true

Troubleshooting

  • Authentication Errors: Make sure you've set up the correct credentials and the Google Sheets API is enabled in your Google Cloud project.
  • Permission Errors: Ensure your Google account or service account has access to the spreadsheets you're trying to access.
  • Server Connectivity: Check that Claude for Desktop is correctly configured to start the MCP server.

License

MIT

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.