Low-code platform
## Budibase MCP Server: Low-Code Application Development Platform The **Budibase MCP Server** integrates the powerful Budibase low-code platform directly into Google Antigravity, enabling rapid internal tool and business application development through AI-assisted workflows. ### Why Budibase MCP? - **Rapid Application Development**: Build internal tools, admin panels, and business applications in minutes instead of weeks with drag-and-drop interfaces - **Database Integration**: Connect to PostgreSQL, MySQL, MongoDB, REST APIs, and more with built-in data source connectors - **Self-Hosted Control**: Deploy on your own infrastructure for complete data sovereignty and security compliance - **Automation Engine**: Create complex workflows with triggers, conditions, and actions without writing code - **Role-Based Access**: Implement granular permissions and access controls for enterprise security requirements ### Key Features #### 1. Application Management ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Create a new Budibase app for employee onboarding with forms for personal info, equipment requests, and training schedules" }] ) ``` #### 2. Data Source Configuration ```python # Configure multiple data sources response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Connect Budibase app to our PostgreSQL database and create CRUD screens for the employees table" }] ) ``` #### 3. Screen Builder ```python # Design application screens response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Add a dashboard screen with charts showing monthly sales, top products, and customer growth metrics" }] ) ``` #### 4. Automation Workflows ```python # Create business automations response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Set up automation: when new order is created, send email notification and update inventory count" }] ) ``` ### Configuration ```json { "mcpServers": { "budibase": { "command": "npx", "args": ["-y", "@anthropic/mcp-server-budibase"], "env": { "BUDIBASE_API_KEY": "your-budibase-api-key", "BUDIBASE_HOST": "https://your-budibase-instance.com" } } } } ``` ### Use Cases **Internal Tool Development**: Build custom CRM, inventory management, and project tracking tools tailored to your specific business processes without extensive development resources. **Admin Dashboards**: Create real-time dashboards that aggregate data from multiple sources, providing executives and managers with actionable insights. **Form-Based Workflows**: Design approval workflows, request forms, and data collection applications with conditional logic and validation rules. **Customer Portals**: Develop self-service portals where customers can view orders, submit tickets, and manage their accounts securely. The Budibase MCP Server transforms Google Antigravity into a powerful low-code development environment, enabling teams to rapidly prototype and deploy business applications while maintaining full control over their data and infrastructure.
{
"mcpServers": {
"budibase": {
"mcpServers": {
"budibase": {
"env": {
"BUDIBASE_URL": "https://your-budibase.com",
"BUDIBASE_API_KEY": "your-api-key"
},
"args": [
"-y",
"budibase-mcp-server"
],
"command": "npx"
}
}
}
}
}