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_keyAPI key- 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. Bubble CLIHeadless setup and direct function calls. Bubble 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.
Bubble MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Bubble.
Claude Code Bubble MCP setup for Claude Code. Cursor Bubble MCP setup for Cursor. Codex Bubble MCP setup for Codex. OpenAI Agents Bubble MCP setup for OpenAI Agents SDK. Claude Agent SDK Bubble MCP setup for Claude Agent SDK. Vercel AI SDK Bubble MCP setup for Vercel AI SDK. LangChain Bubble MCP setup for LangChain. LangGraph Bubble MCP setup for LangGraph. CrewAI Bubble MCP setup for CrewAI. MCP clients Bubble MCP setup for Generic MCP Clients.
Bubble CLI Matrix
Use these pages for direct Bubble CLI workflows in scripts, CI, cron, and agent wrappers.
CI Bubble CLI for CI. Cron Jobs Bubble CLI for cron jobs. Shell Scripts Bubble CLI for shell scripts. Headless Automation Bubble CLI for headless automation. Coding Agents Bubble CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
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. |