MCP.so
登录

Quip MCP Server

@zxkane

关于 Quip MCP Server

Model Context Procotol(MCP) server for fetching Quip document

基本信息

分类

其他

许可证

MIT

运行时

python

传输方式

stdio

发布者

zxkane

配置

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

{
  "mcpServers": {
    "quip-mcp-server": {
      "command": "uvx",
      "args": [
        "quip-mcp-server"
      ]
    }
  }
}

工具

未检测到工具

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

概览

What is Quip MCP Server?

A Model Context Protocol (MCP) server for interacting with Quip spreadsheets. It provides tools to read spreadsheet data from Quip documents and return the content in CSV format. Designed for developers building AI-powered tools that need to query spreadsheet data stored in Quip.

How to use Quip MCP Server?

Install via uvx (recommended) or pip, then set environment variables QUIP_TOKEN and optionally QUIP_BASE_URL and QUIP_STORAGE_PATH. Run the server with uvx quip-mcp-server or python -m src.server. Use the quip_read_spreadsheet tool with a threadId and optional sheetName.

Key features of Quip MCP Server

  • Retrieve spreadsheet content from Quip documents.
  • Support for selecting specific sheets by name.
  • Returns data in CSV format with metadata.
  • Handles authentication via Quip API token.
  • Provides appropriate error messages for non-spreadsheet documents.
  • Automatically handles large spreadsheets by truncating content.

Use cases of Quip MCP Server

  • Extracting data from a Quip spreadsheet for analysis in an AI agent.
  • Integrating Quip spreadsheets into a conversational AI assistant.
  • Automating data retrieval from Quip documents for reporting.

FAQ from Quip MCP Server

What does the server do vs alternatives?

It provides MCP tools to read Quip spreadsheet data and return it as CSV, using the Quip API to export to XLSX then convert, with a fallback to HTML parsing.

What are the runtime requirements?

Python 3.12, a Quip API token, and the Quip platform base URL (optional). It uses uv for dependency management and can run via uvx or pip.

Where does spreadsheet data live?

Data is stored locally in CSV files at the configured --storage-path (default: ~/.quip-mcp-server/storage). Resource URIs reference these files using quip:// or file:// protocols.

What are the known limits?

Large spreadsheets are truncated to 10KB in the tool response, but complete content is accessible via resource URIs. Non-spreadsheet documents return an error.

What transports/auth are supported?

Stdio transport (and optionally HTTP in the TypeScript version). Authentication uses a Quip API token set via QUIP_TOKEN environment variable.

评论

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