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.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.
Agent Surfaces
Machine-Readable Metadata
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. |