Salesforce collaborative documents and spreadsheets.
## Quip MCP Server: Collaborative Documents The **Quip MCP Server** integrates Salesforce Quip into Google Antigravity, enabling developers to create and manage collaborative documents and spreadsheets through AI-assisted teamwork. ### Why Quip MCP? - **Salesforce Integration**: Native integration with Salesforce CRM - **Real-Time Collaboration**: Edit documents with team members live - **Embedded Spreadsheets**: Full spreadsheet functionality within documents - **Chat Integration**: In-document chat and mentions - **Mobile Optimized**: Full-featured mobile apps ### Key Features #### 1. Document Operations ```javascript // Create document const doc = await quip.createDocument({ title: "Product Requirements", content: "# Product Requirements Document\n\n## Overview\n...", memberIds: ["user1", "user2"], format: "markdown" }); // Get document content const content = await quip.getDocument({ threadId: doc.thread.id, format: "html" }); // Update document await quip.editDocument({ threadId: doc.thread.id, content: updatedContent, format: "markdown", location: "append" }); // Search documents const results = await quip.search({ query: "API documentation", type: "document", count: 20 }); ``` #### 2. Spreadsheet and Collaboration ```javascript // Create spreadsheet const sheet = await quip.createSpreadsheet({ title: "Sprint Tracking", rows: [ ["Task", "Assignee", "Status", "Points"], ["Auth system", "Alice", "In Progress", "8"] ] }); // Add rows to spreadsheet await quip.addSpreadsheetRows({ threadId: sheet.thread.id, rows: [["New task", "Bob", "Todo", "5"]] }); // Add message to thread await quip.addMessage({ threadId: doc.thread.id, content: "Updated the requirements based on feedback" }); ``` ### Configuration ```json { "mcpServers": { "quip": { "command": "npx", "args": ["-y", "@anthropic/mcp-quip"], "env": { "QUIP_ACCESS_TOKEN": "your-access-token" } } } } ``` ### Use Cases **Sales Documentation**: Create proposals and documents linked to Salesforce records. **Team Planning**: Build collaborative project plans with embedded spreadsheets. **Meeting Notes**: Create shared meeting notes with real-time collaboration. The Quip MCP Server brings Salesforce-integrated collaboration to your workflow.
{
"mcpServers": {
"quip": {}
}
}