All-in-one doc
## Coda MCP Server: All-in-One Docs The **Coda MCP Server** integrates Coda's powerful document platform into Google Antigravity, enabling developers to create, manage, and automate smart documents that combine text, data, and interactivity through AI-assisted workflows. ### Why Coda MCP? - **Living Documents**: Docs that update automatically with connected data - **Tables & Databases**: Spreadsheet-like tables with relational capabilities - **Buttons & Automations**: Add interactivity without code - **Packs**: Connect to 600+ external services and APIs - **Templates**: Start with pre-built solutions for common use cases ### Key Features #### 1. Document and Table Operations ```javascript // Create a new doc const doc = await coda.createDoc({ title: "Sprint Tracker", sourceDoc: "template_id", // Optional: clone from template folderId: "folder_123" }); // Add rows to table await coda.insertRows({ docId: doc.id, tableId: "tasks", rows: [ { "Task": "Implement auth", "Status": "In Progress", "Points": 5 }, { "Task": "Write tests", "Status": "Todo", "Points": 3 } ] }); // Query table with filter const activeTasks = await coda.listRows({ docId: doc.id, tableId: "tasks", query: "Status:\"In Progress\"" }); ``` #### 2. Formulas and Automations ```javascript // Update row with formula reference await coda.updateRow({ docId: doc.id, tableId: "tasks", rowId: "row_123", row: { "Status": "Complete", "Completed Date": "=Today()" } }); // Trigger automation button await coda.triggerButton({ docId: doc.id, tableId: "tasks", rowId: "row_123", buttonId: "notify_team" }); ``` ### Configuration ```json { "mcpServers": { "coda": { "command": "npx", "args": ["-y", "@anthropic/mcp-coda"], "env": { "CODA_API_TOKEN": "your-api-token" } } } } ``` ### Use Cases **Project Documentation**: Create living documentation that stays in sync with project data. **Team Dashboards**: Build interactive dashboards with real-time data from multiple sources. **Workflow Automation**: Automate team processes with buttons, formulas, and integrations. The Coda MCP Server brings intelligent document automation to your development workflow.
{
"mcpServers": {
"coda": {
"mcpServers": {
"coda": {
"env": {
"CODA_API_KEY": "your-api-key"
},
"args": [
"-y",
"coda-mcp-server"
],
"command": "npx"
}
}
}
}
}