Quip MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Quip MCP Serverread the Quip document S6eaArZiT0xy"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Quip MCP Server
A Model Context Protocol (MCP) server for reading Quip documents and spreadsheets. Works with Claude Desktop and any MCP-compatible client.
Quick Setup
Run the setup script — it will prompt for your Quip token and configure Claude Desktop automatically:
bash <(curl -fsSL https://raw.githubusercontent.com/yashjain/quip-mcp/main/setup.sh)Or manually add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"quip": {
"command": "npx",
"args": [
"-y",
"@yashj645/quip-mcp-server",
"--storage-path",
"/Users/yourname/.quip-mcp/storage",
"--file-protocol"
],
"env": {
"QUIP_TOKEN": "your_quip_api_token"
}
}
}
}Get your Quip API token from: https://your-quip-domain.quip.com/dev/token
Related MCP server: Google Sheets API MCP Server
Installation
# Run directly with npx (no install needed)
npx @yashj645/quip-mcp-server
# Or install globally
npm install -g @yashj645/quip-mcp-serverRequires Node.js v18+.
Available Tools
quip_read_document
Reads the text content of a regular Quip document (not a spreadsheet).
Parameters:
threadId(required): The Quip thread ID (part of the URL after your Quip domain)
Example:
{ "threadId": "AbCdEfGhIjKl" }Response:
{
"thread_id": "AbCdEfGhIjKl",
"title": "My Document",
"type": "document",
"text_content": "Full plain text content of the document...",
"word_count": 342
}quip_read_spreadsheet
Reads a Quip spreadsheet and returns its content as CSV.
Parameters:
threadId(required): The Quip thread IDsheetName(optional): Name of the sheet to read. Defaults to the first sheet.
Example:
{ "threadId": "AbCdEfGhIjKl", "sheetName": "Sheet1" }Response:
{
"csv_content": "header1,header2\nvalue1,value2\n...",
"metadata": {
"total_rows": 1000,
"total_size": 52840,
"is_truncated": true,
"resource_uri": "file:///Users/yourname/.quip-mcp/storage/AbCdEfGhIjKl-Sheet1.csv"
}
}Content is truncated at 10KB in the response. The full CSV is saved locally and accessible via resource_uri.
Finding the Thread ID: It's the segment in the Quip URL right after your domain.
Example: https://yourcompany.quip.com/S6eaArZiT0xy/Doc-Title → thread ID is S6eaArZiT0xy
Usage with Claude
Once set up, ask Claude:
"Read the Quip document with thread ID S6eaArZiT0xy""Read the Quip spreadsheet with thread ID AbCdEfGhIjKl""Read the sheet named 'Q1 Data' from the Quip spreadsheet AbCdEfGhIjKl"
Command Line Arguments
Argument | Description | Default |
| Where to store CSV files locally |
|
| Use | off |
| Run as HTTP server on this port | stdio mode |
| Use mock data (no Quip token needed) | off |
| Enable debug logging | off |
|
|
|
| S3 bucket (when using S3 storage) | — |
| S3 region | — |
Environment Variables
QUIP_TOKEN=your_token # Required (unless --mock)
QUIP_BASE_URL=https://platform.quip.com # Optional
QUIP_STORAGE_PATH=/path/to/storage # Optional
STORAGE_TYPE=local # 'local' or 's3'HTTP Mode (for team sharing)
Run as a shared HTTP server so others on your team can connect without installing anything locally:
QUIP_TOKEN=your_token npx @yashj645/quip-mcp-server --port 3000Others then configure:
{
"mcpServers": {
"quip": {
"url": "http://your-server:3000/mcp"
}
}
}Development
git clone https://github.com/yashj645/quip-mcp-server.git
cd quip-mcp-server
npm install
npm run build
npm testMock mode (no Quip token needed):
node dist/index.js --mock --storage-path ./storageLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceA Model Context Protocol server that enables AI assistants like Claude to directly read and edit Quip documents through a set of specialized tools.56ISC
- Flicense-qualityDmaintenanceAn MCP server that enables interaction with Google Sheets through natural language, allowing users to create, read, update, and manage spreadsheet data via the Google Sheets API v4.
- Alicense-qualityCmaintenanceA 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.111MIT
- FlicenseAqualityDmaintenanceA Model Context Protocol (MCP) server that provides native access to Quip documents from any MCP-compatible AI client (Claude Desktop, Claude Code, or custom integrations). Search, browse, and read Quip documents as clean markdown.5
Related MCP Connectors
GibsonAI MCP server: manage your databases with natural language
MCP server for generating rough-draft project plans from natural-language prompts.
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yashj645/quip-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server