KosmoKrator

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_token API token
cli_setup_supported
true
cli_runtime_supported
true
mcp_gateway_supported
true
lua_supported
true
supports_multi_account
true

Quick Links

Coda MCP Client Matrix

Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Coda.

Coda CLI Matrix

Use these pages for direct Coda CLI workflows in scripts, CI, cron, and agent wrappers.

Function Catalog

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