KosmoKrator

productivity

NocoDB MCP, CLI, and Lua Integration for AI Agents

NocoDB integration docs for AI agents: MCP gateway setup, NocoDB CLI commands, Lua API reference, credentials, and function schemas.

15 functions 8 read 7 write API token auth

NocoDB 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
nocodb
route_slug
nocodb
package
nocodb
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

NocoDB MCP Client Matrix

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

NocoDB CLI Matrix

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

Function Catalog

FunctionTypeParametersDescription
nocodb.nocodb_list_records Read read 7 List records from a NocoDB table with optional filtering, sorting, and pagination.
nocodb.nocodb_get_record Read read 3 Get a single NocoDB record by ID.
nocodb.nocodb_create_record Write write 2 Create a new record in a NocoDB table.
nocodb.nocodb_update_record Write write 3 Update an existing NocoDB record.
nocodb.nocodb_delete_record Write write 2 Delete a record from a NocoDB table.
nocodb.nocodb_batch_create Write write 2 Create multiple records in a single NocoDB API request.
nocodb.nocodb_batch_update Write write 2 Update multiple records in a single NocoDB API request.
nocodb.nocodb_batch_delete Write write 2 Delete multiple records in a single NocoDB API request.
nocodb.nocodb_list_bases Read read 0 List all NocoDB bases the token has access to.
nocodb.nocodb_get_base Read read 1 Get details of a single NocoDB base.
nocodb.nocodb_list_tables Read read 1 List all tables in a NocoDB base.
nocodb.nocodb_get_table Read read 1 Get details of a single NocoDB table.
nocodb.nocodb_create_table Write write 3 Create a new table in a NocoDB base.
nocodb.nocodb_list_views Read read 1 List views for a NocoDB table.
nocodb.nocodb_count_records Read read 2 Count records in a NocoDB table with optional filtering.