productivity
Coda MCP, CLI, and Lua Integration for AI Agents
Coda integration docs for AI agents: MCP gateway setup, Coda CLI commands, Lua API reference, credentials, and function schemas.
12 functions 9 read 3 write API token auth
Coda for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Machine-Readable Metadata
- integration_slug
coda- route_slug
coda- package
coda- auth_strategy
api_tokenAPI token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Coda CLIHeadless setup and direct function calls. Coda MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Coda MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Coda.
Claude Code Coda MCP setup for Claude Code. Cursor Coda MCP setup for Cursor. Codex Coda MCP setup for Codex. OpenAI Agents Coda MCP setup for OpenAI Agents SDK. Claude Agent SDK Coda MCP setup for Claude Agent SDK. Vercel AI SDK Coda MCP setup for Vercel AI SDK. LangChain Coda MCP setup for LangChain. LangGraph Coda MCP setup for LangGraph. CrewAI Coda MCP setup for CrewAI. MCP clients Coda MCP setup for Generic MCP Clients.
Coda CLI Matrix
Use these pages for direct Coda CLI workflows in scripts, CI, cron, and agent wrappers.
CI Coda CLI for CI. Cron Jobs Coda CLI for cron jobs. Shell Scripts Coda CLI for shell scripts. Headless Automation Coda CLI for headless automation. Coding Agents Coda CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
coda.coda_list_docs | Read read | 3 | List Coda docs accessible to the authenticated user. Optionally filter by name or ownership. |
coda.coda_get_doc | Read read | 1 | Get details of a specific Coda doc by its ID. |
coda.coda_list_tables | Read read | 2 | List tables in a Coda doc. Returns table IDs, names, and display types. |
coda.coda_get_table | Read read | 2 | Get details of a specific table in a Coda doc, including its columns and display column. |
coda.coda_list_rows | Read read | 4 | List rows in a Coda table. Use useColumnNames=true to get values keyed by human-readable column names instead of column IDs. |
coda.coda_get_row | Read read | 4 | Get a single row from a Coda table by its row ID. |
coda.coda_insert_rows | Write write | 3 | Insert one or more new rows into a Coda table. Each row should have a "cells" array with column/value pairs. |
coda.coda_update_row | Write write | 4 | Update cells in an existing row in a Coda table. Provide a cells array with column/value pairs to update. |
coda.coda_delete_row | Write write | 3 | Delete a row from a Coda table. This action is permanent. |
coda.coda_list_columns | Read read | 3 | List columns in a Coda table. Useful to discover column names and types before querying or inserting rows. |
coda.coda_list_pages | Read read | 2 | List pages in a Coda doc. Pages can contain text, tables, and other content. |
coda.coda_get_current_user | Read read | 0 | Verify Coda authentication and get the current user's profile information. |