data
Baserow MCP, CLI, and Lua Integration for AI Agents
Baserow integration docs for AI agents: MCP gateway setup, Baserow CLI commands, Lua API reference, credentials, and function schemas.Baserow 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 |
|---|---|---|---|
baserow.baserow_api_delete | Read read | 3 | Call a relative Baserow API path with DELETE for supported endpoints not covered by a dedicated tool. |
baserow.baserow_api_get | Read read | 2 | Call a relative Baserow API path with GET for supported endpoints not covered by a dedicated tool. |
baserow.baserow_api_patch | Read read | 3 | Call a relative Baserow API path with PATCH for supported endpoints not covered by a dedicated tool. |
baserow.baserow_api_post | Read read | 3 | Call a relative Baserow API path with POST for supported endpoints not covered by a dedicated tool. |
baserow.baserow_batch_create | Read read | 2 | Create multiple rows in a Baserow table in a single request. |
baserow.baserow_batch_delete | Read read | 2 | Delete multiple rows from a Baserow table in a single request. |
baserow.baserow_batch_update | Read read | 2 | Update multiple rows in a Baserow table in a single request. Each row must include its "id". |
baserow.baserow_create_field | Write write | 2 | Create a field in a Baserow table. Requires an account token with schema permissions. |
baserow.baserow_create_row | Write write | 2 | Create a new row in a Baserow database table. Provide field data as a JSON object mapping field names to values. |
baserow.baserow_delete_field | Write write | 1 | Delete a Baserow field by field ID. This removes the field and its values. |
baserow.baserow_delete_row | Write write | 2 | Delete a row from a Baserow database table. This action is permanent and cannot be undone. |
baserow.baserow_get_current_user | Read read | 0 | Get the currently authenticated Baserow user profile. Returns user details including name, email, and workspace memberships. |
baserow.baserow_get_field | Read read | 1 | Get metadata for a single Baserow field by field ID. |
baserow.baserow_get_row | Read read | 2 | Get a single row from a Baserow database table by its row ID. Returns all field values for the row. |
baserow.baserow_get_table | Read read | 1 | Get details for a single Baserow table by its ID. |
baserow.baserow_list_all_tables | Read read | 1 | List every Baserow table visible to the configured database token. |
baserow.baserow_list_database_tables | Read read | 1 | List tables inside a specific Baserow database. |
baserow.baserow_list_databases | Read read | 2 | List all databases (applications) in the Baserow workspace. Returns database names, IDs, and types for navigation. |
baserow.baserow_list_fields | Read read | 1 | List all fields (columns) and their types in a Baserow table. |
baserow.baserow_list_rows | Read read | 8 | List rows in a Baserow table with optional filtering, searching, sorting, and pagination. |
baserow.baserow_list_tables | Read read | 4 | List rows in a Baserow database table. Supports pagination and optional filters to narrow results by field values. |
baserow.baserow_move_row | Write write | 3 | Move a Baserow row before another row or to the end of a table. |
baserow.baserow_update_field | Write write | 2 | Update a Baserow field definition. Requires an account token with schema permissions. |
baserow.baserow_update_row | Write write | 3 | Update an existing row in a Baserow database table. Provide field data as a JSON object with field names and new values. Only specified fields are updated. |