Bubble

Bubble is a visual programming language and a PaaS developed by Bubble Group.

15 actions Integration catalog
Request access
Connect Bubble once you're in Boring.
01 · WHAT THE AGENT CAN DO

Actions

Every capability is a discrete, logged action the agent calls by name — scoped to what you authorize and recorded in the run trace.

Bulk Create ThingsBUBBLE_DATA_BULK_CREATE_THINGS
Tool to bulk create multiple Things in Bubble via newline-separated JSON. Use when you need to insert many records at once. Must have Create via API permission.
Create ThingBUBBLE_DATA_CREATE_THING
Tool to create a new Thing. Use when providing a complete JSON payload to add a new record.
Delete Thing By IDBUBBLE_DATA_DELETE_THING_BY_ID
Tool to delete a Bubble Thing by its unique ID. Use when you need to remove a specific record via the Bubble Data API.
Get Thing By IDBUBBLE_DATA_GET_THING_BY_ID
Retrieves a single Thing (record) from a Bubble Data Type by its unique ID. This is a read-only operation that fetches complete details of a specific record. The response includes all custom fields defined in the Data Type, plus standard Bubble fields (_id, created_by, created_date, modified_date). Use when you need to: - Fetch details of a specific record you know the ID of - Verify a record exists - Get the latest field values for a Thing Note: Requires the Data API to be enabled in your Bubble app settings and the specific Data Type to be exposed via the API.
Patch Thing By IDBUBBLE_DATA_PATCH_THING_BY_ID
Tool to modify selected fields on a Thing by its unique ID. Use after confirming the Thing exists.
Replace Thing by IDBUBBLE_DATA_PUT_REPLACE_THING_BY_ID
Tool to replace all editable fields on a Thing by its Unique ID. Use when you need a full overwrite of a Thing's fields and reset omitted fields to default.
Download FileBUBBLE_FILE_DOWNLOAD
Tool to download a file given its URL. Use when you need to retrieve file content for subsequent upload tests.
Create Temp FileBUBBLE_FILE_TEMP_CREATE
Tool to upload bytes as a temporary file to Cloudflare R2 and return an S3 key. Use when you need a short-lived file reference before persisting it in a Thing.
Upload FileBUBBLE_FILE_UPLOAD
Tool to upload a file to Bubble storage. Use when you need to store arbitrary files via Bubble's /fileupload endpoint.
Get Bubble API Swagger JSONBUBBLE_META_GET_SWAGGER_JSON
Tool to retrieve the auto-generated Swagger JSON for enabled APIs. Use after enabling the Swagger file in your Bubble app's API settings.
Get OAuth Access TokenBUBBLE_O_AUTH_ACCESS_TOKEN
Tool to exchange an authorization code or refresh token for an OAuth2 access token. Use after obtaining an authorization code or when refreshing an expired token.
OAuth AuthorizeBUBBLE_OAUTH_AUTHORIZE
Tool to initiate OAuth2 authorization flow for Bubble. Use when setting up third-party login integration. Returns the URL for user-agent redirection to obtain an authorization code.
Bubble OAuth Register AppBUBBLE_O_AUTH_REGISTER_APP
Tool to validate/initialize OAuth application credentials with Bubble. It performs a real call to Bubble's /oauth/authorize endpoint (or provided override) using client_id and redirect_uri to confirm connectivity and returns supplied credentials.
Trigger Bubble Workflow via GETBUBBLE_WORKFLOW_TRIGGER_GET
Trigger a Bubble API workflow using an HTTP GET request. API workflows are server-side workflows in Bubble that can be triggered externally. Use GET for simple workflows that don't require a request body (parameters passed as query strings). For workflows requiring complex data or file uploads, use the POST version instead. Before using: The workflow must be created in Bubble's workflow editor and marked as "Expose as a public API workflow". The Bubble app must have API access enabled in its subscription.
Trigger Bubble Workflow via POSTBUBBLE_WORKFLOW_TRIGGER_POST
Triggers a Bubble API workflow by name using a POST request. Use this tool to execute backend workflows in your Bubble application. The workflow must be configured in your Bubble app's API Workflows section with "Expose as public API workflow" enabled. Pass any required parameters as a JSON object in the parameters field.