Aerostack
electrical_services

Coda MCP Server — Hosted Api Connectors Integration

MCP Server language Hosted language Public

Access docs, tables, rows, formulas, and automations in Coda — AI-native doc-database hybrid for any agent.

aerostack @aerostack verified
v0.1.0 MIT Updated Jun 29, 2026
robot_2

Use with AI AssistantsMCP

Connect Claude, Cursor, or any MCP-compatible client — then call tools directly

① Add This MCP Server

Paste into your AI client config — then all its tools are available instantly.

.claude/mcp.json
{
  "mcpServers": {
    "coda": {
      "url": "https://mcp.aerostack.dev/s/aerostack/mcp-coda",
      "headers": {
        "Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
      }
    }
  }
}

Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.

② Call a Tool

Ask your AI assistant to call a specific tool, or send raw JSON-RPC:

+4 more

Natural Language Prompt

“Use the _ping tool to health check — returns { ok: true } if the server and api token are working

Using a Workspace?

Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.

add_circleAdd to Workspace

description Overview

mcp-coda — Coda MCP Server

Access docs, tables, rows, formulas, and automations in Coda — AI-native doc-database hybrid for any agent.

Coda is the all-in-one doc that combines the flexibility of documents with the power of spreadsheets and databases. This MCP server gives your AI agents full read/write access to your Coda workspace — listing docs, querying table rows, inserting and updating data, and inspecting formulas and controls. Connect it once and every agent in your workspace can work with your Coda data.

Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-coda


What You Can Do

  • List and search your Coda docs, then drill into any doc's tables, formulas, and controls
  • Query table rows with filters and sorting — great for CRM lookups, project tracking, or inventory checks
  • Insert new rows or update existing ones from agent workflows — automate data entry that currently requires opening Coda
  • Inspect named formulas and controls to understand doc logic before making changes

Available Tools

Tool Description
_ping Health check — verifies the server and API token are working
list_docs List Coda docs accessible to the authenticated user, with optional search
get_doc Get detailed information about a specific Coda doc
list_tables List all tables in a Coda doc
get_table_rows Get rows from a table with optional query filter, sort, and limit
insert_rows Insert one or more rows into a Coda table
update_row Update an existing row in a Coda table
delete_row Delete a row from a Coda table
list_formulas List all named formulas in a Coda doc
list_controls List all controls (buttons, sliders, inputs) in a Coda doc

Configuration

Variable Required Description How to Get
CODA_API_TOKEN Yes API token for Coda API v1 coda.io/accountAPI settingsGenerate API token

Quick Start

Add to Aerostack Workspace
  1. Go to aerostack.dev → Your Project → MCPs
  2. Search for "Coda" and click Add to Workspace
  3. Add your CODA_API_TOKEN under Project → Secrets

Once added, every AI agent in your workspace can call Coda tools automatically — no per-user setup needed.

Example Prompts
"List all my Coda docs that mention 'Q2 Planning'"
"Show me the rows in the Tasks table where Status is 'In Progress'"
"Add a new row to the Bugs table with title 'Login timeout' and priority 'High'"
"What formulas are defined in my Sprint Tracker doc?"
"Delete the row with ID i-abc123 from the Inventory table"
Direct API Call
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-coda \
  -H 'Content-Type: application/json' \
  -H 'X-Mcp-Secret-CODA-API-TOKEN: your-token' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_docs","arguments":{}}}'

License

MIT

terminal Tools (10)

Available tools on this MCP server. Each tool can be called directly from any AI agent.

terminal
_ping #1

Health check — returns { ok: true } if the server and API token are working

terminal
list_docs #2

List Coda docs accessible to the authenticated user, with optional search

terminal
get_doc #3

Get detailed information about a specific Coda doc

terminal
list_tables #4

List all tables in a Coda doc

terminal
get_table_rows #5

Get rows from a Coda table with optional query filter, sort, and limit

terminal
insert_rows #6

Insert one or more rows into a Coda table

terminal
update_row #7

Update an existing row in a Coda table

terminal
delete_row #8

Delete a row from a Coda table

terminal
list_formulas #9

List all named formulas in a Coda doc

terminal
list_controls #10

List all controls (buttons, sliders, inputs) in a Coda doc

Details

upgrade Version 0.1.0
gavel License MIT
wifi Transport streamable-http
lock Access Public
category Category API Connectors
terminal Tools 10

language Live Endpoint

https://mcp.aerostack.dev/s/aerostack/mcp-coda

Sub-50ms globally · Zero cold start

Publisher

aerostack
@aerostack verified

Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.

Tags

Browse more servers

More in API Connectors

Browse API Connectors MCPs →

Frequently asked questions

What is the Coda MCP server and what can it do? +

The Coda MCP server is hosted on Aerostack and exposes these tools to your AI agent: `_ping`, `list_docs`, `get_doc`, `list_tables`, `get_table_rows`. You get one hosted URL — no self-hosting — that works from Claude, Cursor, ChatGPT, Gemini, VS Code, or any MCP-compatible client, and you can share it with your team or combine it with other MCP servers in a workspace.

Is the Coda MCP server hosted, or do I have to run it myself? +

It's hosted on Aerostack's edge infrastructure — you don't deploy or maintain anything. Add it to a workspace and you get one authenticated URL, with secrets encrypted, that any AI agent or editor can connect to. Use it solo or share the same URL across your whole team.

Which AI agents and editors can use the Coda MCP server? +

Any MCP client: Claude and Claude Code, Cursor, ChatGPT, Gemini, Windsurf, Cline, VS Code, and custom agents. Because it's one hosted URL, the same Coda MCP server works everywhere — and you can compose it with other MCP servers, skills, and functions behind a single workspace URL.

How do I install the Coda MCP server in Claude Desktop? +

Add the following to your Claude Desktop config (`claude_desktop_config.json`): ```json { "mcpServers": { "@aerostack/mcp-coda": { "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-coda"] } } } ``` Then restart Claude Desktop and the tools will appear automatically.

How do I use the Coda MCP server in Cursor? +

In Cursor, open **Settings → MCP** and add: ```json { "name": "@aerostack/mcp-coda", "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-coda"] } ``` Save and reload Cursor. The MCP tools will be available in Agent mode.

Does Coda MCP require authentication? +

Yes. Coda requires authentication. Check the MCP's documentation for the required credentials.