Bubble MCP Server
Enables AI assistants to interact with Bubble.io applications through the Data API, supporting CRUD operations, schema discovery, and workflow execution.
README
Bubble MCP (D1DX Fork)
A Model Context Protocol (MCP) server that enables AI assistants to interact with Bubble.io applications through the Data API.
Forked from dorianglz/bubble_mcp (originally nocoderoi/bubble_mcp).
What We Fixed
The upstream repo has a URL path construction bug (nocoderoi/bubble_mcp#5) that causes MCP startup failures:
getSchema()andlist()prepended/api/1.1/to paths, but the base URL could also include/api/1.1— resulting in double-path requests (/api/1.1/api/1.1/meta) that return 404.get(),create(),update(),delete(),workflow()used relative paths like/obj/...without/api/1.1/— so they only worked when the base URL already included it.apiClient.tsonly acceptedBUBBLE_API_URL, notBUBBLE_BASE_URL(contradicting the README).
Fixes applied
apiClient.ts— Accepts bothBUBBLE_API_URLandBUBBLE_BASE_URL. Normalizes any input to always end with/api/1.1, regardless of whether the user includes it or not.bubbleService.ts— All paths are now relative (/meta,/obj/...,/wf/...). No method prepends/api/1.1/since the base URL already includes it.package.json— Addedpreparescript for auto-build onnpxinstall. Committeddist/for zero-build usage.
Features
- Universal Bubble Support: Works with any Bubble.io application
- Auto-discovery: Automatically discovers your app's data types and structure
- CRUD Operations: Create, Read, Update, and Delete operations for all data types
- Workflow Execution: Execute API workflows defined in your Bubble app
- Privacy Settings Aware: Respects Bubble's privacy rules and constraints
- Read-only/Read-write Modes: Configurable access levels for safety
Quick Start
With npx (no local install)
{
"mcpServers": {
"bubble": {
"command": "npx",
"args": ["-y", "github:D1DX/bubble-mcp"],
"env": {
"BUBBLE_API_URL": "https://your-app.bubbleapps.io",
"BUBBLE_API_TOKEN": "your-token",
"MCP_MODE": "read-write"
}
}
}
}
BUBBLE_API_URL can be either https://your-app.bubbleapps.io or https://your-app.bubbleapps.io/api/1.1 — both work.
Local install
git clone https://github.com/D1DX/bubble-mcp.git
cd bubble-mcp
npm install
npm run build
{
"mcpServers": {
"bubble": {
"command": "node",
"args": ["/path/to/bubble-mcp/dist/mcp-server.js"],
"env": {
"BUBBLE_API_URL": "https://your-app.bubbleapps.io",
"BUBBLE_API_TOKEN": "your-token",
"MCP_MODE": "read-write"
}
}
}
}
Environment Variables
| Variable | Required | Description |
|---|---|---|
BUBBLE_API_URL |
Yes (or BUBBLE_BASE_URL) |
Your Bubble app URL (with or without /api/1.1) |
BUBBLE_API_TOKEN |
Yes | API token from Bubble Settings > API |
MCP_MODE |
No | read-only (default) or read-write |
Available Tools
| Tool | Description | Mode |
|---|---|---|
bubble_get_schema |
Discover app data types and structure | read-only |
bubble_list |
List records of a data type (with pagination) | read-only |
bubble_get |
Get a specific record by ID | read-only |
bubble_create |
Create a new record | read-write |
bubble_update |
Update an existing record | read-write |
bubble_delete |
Delete a record | read-write |
bubble_workflow |
Execute an API workflow | read-write |
Getting Your Bubble API Token
- Go to your Bubble app editor
- Navigate to Settings > API
- Enable "This app exposes a Data API"
- Generate an API token
License
MIT License — Copyright (c) 2026 Daniel Rudaev @ D1DX
Credits
Original project by nocoderoi and dorianglz. Fork maintained by D1DX.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.