KosmoKrator

no-code

Bubble MCP, CLI, and Lua Integration for AI Agents

Bubble integration docs for AI agents: MCP gateway setup, Bubble CLI commands, Lua API reference, credentials, and function schemas.

5 functions 2 read 3 write API key auth

Bubble 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
bubble
route_slug
bubble
package
bubble
auth_strategy
api_key API key
cli_setup_supported
true
cli_runtime_supported
true
mcp_gateway_supported
true
lua_supported
true
supports_multi_account
true

Quick Links

Bubble MCP Client Matrix

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

Bubble CLI Matrix

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

Function Catalog

FunctionTypeParametersDescription
bubble.bubble_list_records Read read 4 List records from a Bubble data type. Supports filtering with constraints, pagination with limit and cursor. Returns matching records and a remaining count for further pagination.
bubble.bubble_get_record Read read 2 Get a single record from Bubble by its data type and unique ID. Returns all fields of the record.
bubble.bubble_create_record Write write 2 Create a new record in a Bubble data type. Provide field names and values as a JSON object. Returns the created record including its generated ID.
bubble.bubble_update_record Write write 3 Update an existing record in Bubble by its data type and unique ID. Only the fields provided will be changed; other fields remain unchanged. Returns the updated record.
bubble.bubble_delete_record Write write 2 Delete a record from Bubble by its data type and unique ID. This action is permanent and cannot be undone.