database
Baserow MCP Integration for Vercel AI SDK
Connect Baserow to Vercel AI SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Baserow to Vercel AI SDK
Use KosmoKrator as a local integration gateway for Vercel AI SDK agents and scripts.
Create an MCP client that starts or connects to the KosmoKrator gateway for the selected integration. The gateway is local, scoped to this integration, and starts with
--write=deny so Vercel AI SDK can inspect read-capable tools without receiving write access by default.
Baserow MCP Config for Vercel AI SDK
Prefer CLI JSON calls when a workflow only needs one deterministic integration operation.
{
"mcpServers": {
"kosmokrator-baserow": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=baserow",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=baserow --write=deny Why Use KosmoKrator Here
Expose only Baserow instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Baserow Tools Visible to Vercel AI SDK
Vercel AI SDK sees stable MCP tool names generated from the Baserow integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__baserow__baserow_create_row | baserow.baserow_create_row | Write | Create a new row in a Baserow database table. Provide field data as a JSON object mapping field names to values. |
integration__baserow__baserow_delete_row | baserow.baserow_delete_row | Write | Delete a row from a Baserow database table. This action is permanent and cannot be undone. |
integration__baserow__baserow_get_current_user | baserow.baserow_get_current_user | Read | Get the currently authenticated Baserow user profile. Returns user details including name, email, and workspace memberships. |
integration__baserow__baserow_get_row | baserow.baserow_get_row | Read | Get a single row from a Baserow database table by its row ID. Returns all field values for the row. |
integration__baserow__baserow_list_databases | baserow.baserow_list_databases | Read | List all databases (applications) in the Baserow workspace. Returns database names, IDs, and types for navigation. |
integration__baserow__baserow_list_tables | baserow.baserow_list_tables | Read | List rows in a Baserow database table. Supports pagination and optional filters to narrow results by field values. |
integration__baserow__baserow_update_row | baserow.baserow_update_row | Write | 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. |