KosmoKrator

database

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.

7 functions 4 read 3 write Bearer token auth

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.

Machine-Readable Metadata
integration_slug
baserow
route_slug
baserow
package
baserow
auth_strategy
bearer_token Bearer token
cli_setup_supported
true
cli_runtime_supported
true
mcp_gateway_supported
true
lua_supported
true
supports_multi_account
true

Quick Links

Baserow MCP Client Matrix

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

Baserow CLI Matrix

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

Function Catalog

FunctionTypeParametersDescription
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_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_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_list_databases Read read 2 List all databases (applications) in the Baserow workspace. Returns database names, IDs, and types for navigation.
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_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.