Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
Coda
file-text

Coda MCP Server

All-in-one doc

docsdataapps

About

## 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.

Installation

Configuration
{
  "mcpServers": {
    "coda": {
      "mcpServers": {
        "coda": {
          "env": {
            "CODA_API_KEY": "your-api-key"
          },
          "args": [
            "-y",
            "coda-mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Get Coda API token
  2. 2Configure doc access
  3. 3Work with tables and pages

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers