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_tokenBearer token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Baserow CLIHeadless setup and direct function calls. Baserow MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Baserow MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Baserow.
Claude Code Baserow MCP setup for Claude Code. Cursor Baserow MCP setup for Cursor. Codex Baserow MCP setup for Codex. OpenAI Agents Baserow MCP setup for OpenAI Agents SDK. Claude Agent SDK Baserow MCP setup for Claude Agent SDK. Vercel AI SDK Baserow MCP setup for Vercel AI SDK. LangChain Baserow MCP setup for LangChain. LangGraph Baserow MCP setup for LangGraph. CrewAI Baserow MCP setup for CrewAI. MCP clients Baserow MCP setup for Generic MCP Clients.
Baserow CLI Matrix
Use these pages for direct Baserow CLI workflows in scripts, CI, cron, and agent wrappers.
CI Baserow CLI for CI. Cron Jobs Baserow CLI for cron jobs. Shell Scripts Baserow CLI for shell scripts. Headless Automation Baserow CLI for headless automation. Coding Agents Baserow CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
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. |