database
Baserow MCP Gateway for AI Agents
Expose Baserow tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.
7 functions 4 read 3 write Bearer token auth
Baserow MCP Gateway
Expose Baserow to MCP clients with `kosmokrator mcp:serve --integration=baserow`.
If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server. The gateway exposes only the selected integration in the example below.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash kosmokrator mcp:gateway:install --integration=baserow --write=deny --json {
"mcpServers": {
"kosmokrator-baserow": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=baserow",
"--write=deny"
]
}
}
} Serve Manually
kosmokrator mcp:serve --integration=baserow --write=deny MCP Tool Names
KosmoKrator exposes integration tools through the gateway with stable names:
| MCP tool | Source function | Type |
|---|---|---|
integration__baserow__baserow_create_row | baserow.baserow_create_row | Write write |
integration__baserow__baserow_delete_row | baserow.baserow_delete_row | Write write |
integration__baserow__baserow_get_current_user | baserow.baserow_get_current_user | Read read |
integration__baserow__baserow_get_row | baserow.baserow_get_row | Read read |
integration__baserow__baserow_list_databases | baserow.baserow_list_databases | Read read |
integration__baserow__baserow_list_tables | baserow.baserow_list_tables | Read read |
integration__baserow__baserow_update_row | baserow.baserow_update_row | Write write |
Write Access
Start with --write=deny for read-only MCP clients. Use --write=ask or
--write=allow only when the client and workspace are trusted.