quip mcp server
A Model Context Protocol server that enables AI assistants like Claude to directly read and edit Quip documents through a set of specialized tools.
A Model Context Protocol server that enables AI assistants like Claude to directly read and edit Quip documents through a set of specialized tools.
A Model Context Protocol (MCP) server for Quip document operations that enables direct interaction with Quip documents from AI assistants like Claude.
This MCP server acts as a bridge between Claude and Quip documents. It works by:
quip_edit_fixed.py
) with the appropriate parametersquip
library installedClone this repository:
git clone https://github.com/AvinashBole/quip-mcp-server.git
cd quip-mcp-server
Install dependencies:
npm install
Build the project:
npm run build
Configure your MCP settings:
{
"mcpServers": {
"quip": {
"command": "node",
"args": ["path/to/quip-server/build/index.js"],
"env": {
"QUIP_ACCESS_TOKEN": "your-quip-access-token",
"QUIP_BASE_URL": "https://platform.quip.com"
},
"disabled": false,
"autoApprove": []
}
}
}
Once connected, the following MCP tools become available to Claude:
quip_read_document
: Read a Quip document by its thread IDquip_append_content
: Append content to a documentquip_prepend_content
: Add content to the beginning of a documentquip_replace_content
: Replace document contentquip_create_document
: Create a new document (currently unsupported)Example usage in Claude:
<use_mcp_tool>
<server_name>quip</server_name>
<tool_name>quip_read_document</tool_name>
<arguments>
{
"threadId": "YOUR_DOCUMENT_ID"
}
</arguments>
</use_mcp_tool>
The server expects a Python script called quip_edit_fixed.py
in the path specified by the PYTHON_SCRIPT_PATH
constant. This script should support the following operations:
read
: Read document contentappend
: Add content to the end of a documentprepend
: Add content to the beginning of a document replace
: Update document contentISC License
AvinashBole