MCP.so
登录

Spreadsheet MCP Server

@HosakaKeigo

关于 Spreadsheet MCP Server

暂无概览

基本信息

分类

其他

运行时

node

传输方式

stdio

发布者

HosakaKeigo

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "spreadsheet-mcp-server": {
      "command": "npx",
      "args": [
        "@modelcontextprotocol/inspector",
        "node",
        "build/index.js"
      ]
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is Spreadsheet MCP Server?

It is a Model Context Protocol (MCP) server that provides access to Google Spreadsheet data, enabling LLMs to directly use spreadsheet information.

How to use Spreadsheet MCP Server?

Clone the repository, install dependencies with npm install, configure environment variables (GAS_WEB_APP_URL and GAS_API_KEY) in a .env file, then build with npm run build. Start the server standalone with npm start or integrate it with Claude for Desktop by editing claude_desktop_config.json. If environment variables are not set, the server runs in mock mode.

Key features of Spreadsheet MCP Server

  • Retrieve spreadsheet basic info (list of sheets)
  • Fetch specific sheet data formatted as markdown tables
  • Integrate with MCP clients such as Claude for Desktop
  • Mock mode when Google Apps Script credentials are missing
  • Avoids Google OAuth flow by using a Google Apps Script Web App

Use cases of Spreadsheet MCP Server

  • An LLM reading and analyzing data from a Google Sheet
  • Building an AI assistant that queries spreadsheet content
  • Automating reports by pulling sheet data into a chat interface
  • Testing spreadsheet access without real credentials (mock mode)

FAQ from Spreadsheet MCP Server

What runtime dependencies does Spreadsheet MCP Server require?

Node.js and npm are required. The project uses TypeScript and compiles to JavaScript.

How do I set up authentication for the server?

Set the environment variables GAS_WEB_APP_URL (the URL of your Google Apps Script Web App) and GAS_API_KEY (the API key for accessing that Web App). If not set, the server runs in mock mode.

Where does the spreadsheet data live?

Data remains in the user's Google Sheets. The server accesses it via a Google Apps Script Web App, without storing spreadsheets locally.

How do I change the transport or authentication method?

The server uses MCP over stdio by default. No other transports are mentioned. Authentication is handled via an API key passed to the GAS Web App; no alternative auth methods are documented.

Are there any known limits or restrictions?

The README notes that if environment variables are not set, the server will not access real Google Sheets and returns mock data. No other limits are stated.

评论

其他 分类下的更多 MCP 服务器