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.

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.

Agent Surfaces

Machine-Readable Metadata

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.