Quip MCP Server
@AvinashBole
关于 Quip MCP Server
quip mcp server
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"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": []
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is Quip MCP Server?
A Model Context Protocol (MCP) server that enables direct interaction with Quip documents from AI assistants like Claude. It bridges Claude and Quip by receiving requests through the MCP protocol, executing a Python script with appropriate parameters, and returning results to the assistant.
How to use Quip MCP Server?
Clone the repository, install dependencies with npm install, build the project with npm run build, then configure your MCP settings with the required environment variables (QUIP_ACCESS_TOKEN and QUIP_BASE_URL). Once connected, tools such as quip_read_document, quip_append_content, quip_prepend_content, and quip_replace_content become available to Claude.
Key features of Quip MCP Server
- Read Quip documents by thread ID
- Append content to the end of existing documents
- Prepend content to the beginning of documents
- Replace existing document content
- Create new documents (currently redirects to web interface)
Use cases of Quip MCP Server
- AI assistants reading and summarizing Quip documents on demand
- Automatically adding notes or updates to existing Quip documents
- Prepopulating document templates with dynamic content via chat
- Editing document sections without leaving the AI assistant interface
FAQ from Quip MCP Server
What prerequisites are needed?
Node.js v18 or higher, TypeScript, Python with the quip library installed, and a valid Quip access token.
How do I authenticate with Quip?
Set the QUIP_ACCESS_TOKEN environment variable to your Quip access token and QUIP_BASE_URL to https://platform.quip.com.
Is the create document feature fully supported?
No. The quip_create_document tool is currently unsupported and redirects to the Quip web interface instead of creating documents programmatically.
Does the server require a Python script?
Yes, it expects a Python script called quip_edit_fixed.py that supports read, append, prepend, and replace operations. The script’s path is defined by the PYTHON_SCRIPT_PATH constant.
What tools does the server expose to Claude?
Five tools: quip_read_document, quip_append_content, quip_prepend_content, quip_replace_content, and quip_create_document (unsupported).
其他 分类下的更多 MCP 服务器
Servers
modelcontextprotocolModel Context Protocol Servers
Awesome Mcp Servers
punkpeyeA collection of MCP servers.
🚀 Model Context Protocol (MCP) Curriculum for Beginners
microsoftThis open-source curriculum introduces the fundamentals of Model Context Protocol (MCP) through real-world, cross-language examples in .NET, Java, TypeScript, JavaScript, Rust and Python. Designed for developers, it focuses on practical techniques for building modular, scalable,
Production-ready MCP integrations for AI applications
Klavis-AIKlavis AI: MCP integration platforms that let AI agents use tools reliably at any scale
Codelf
unbugA search tool helps dev to solve the naming things problem.
评论