Bilt
AI agents autonomously build and deploy mobile apps through natural language workflows
Ask AI about Bilt
Powered by Claude Β· Grounded in docs
I know everything about Bilt. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
Bilt MCP Server

Enable AI agents to autonomously build and deploy full-stack mobile applications
Documentation β’ Sign Up β’ Examples β’ Support
What is Bilt MCP Server?
Bilt's Model Context Protocol (MCP) server gives AI agents 8 powerful tools to autonomously create, build, and deploy production-ready mobile applications through natural language.
Key Features
- π€ Agent-First Design - Built specifically for AI autonomy
- π Zero Setup - Remote SSE server, no local installation
- ποΈ Complete Lifecycle - From project creation to production deployment
- β‘ Real-Time Updates - SSE transport for live progress tracking
- π Secure - Bearer token authentication, rate limiting
- π± Mobile Focus - Optimized for mobile app development
Quick Start
1. Get API Token
Sign up at bilt.me/sign-up and generate an API key.
2. Configure Your MCP Client
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
{
"mcpServers": {
"bilt": {
"transport": {
"type": "sse",
"url": "https://mcp.bilt.me/mcp/sse",
"headers": {
"Authorization": "Bearer bilt_live_YOUR_TOKEN_HERE"
}
}
}
}
}
Restart Claude Desktop.
OpenClaw
Edit ~/.openclaw/openclaw.json:
{
"mcpServers": {
"bilt": {
"transport": {
"type": "sse",
"url": "https://mcp.bilt.me/mcp/sse",
"headers": {
"Authorization": "Bearer bilt_live_YOUR_TOKEN_HERE"
}
}
}
}
}
Restart: openclaw gateway restart
Cursor IDE
Create .cursor/mcp_config.json in your project:
{
"mcpServers": {
"bilt": {
"transport": {
"type": "sse",
"url": "https://mcp.bilt.me/mcp/sse",
"headers": {
"Authorization": "Bearer bilt_live_YOUR_TOKEN_HERE"
}
}
}
}
}
Reload Cursor window: Cmd/Ctrl+Shift+P β "Reload Window"
3. Test It
Ask your AI agent:
"Use Bilt to create a todo app with authentication"
Watch it autonomously create, build, and deploy a production app! π
Available Tools
The Bilt MCP server provides 8 tools for complete application lifecycle management:
| Tool | Purpose |
|---|---|
bilt_list_projects | List all projects for authenticated user |
bilt_get_project | Get detailed project information |
bilt_create_project | Create a new project |
bilt_get_session | Get current workflow session status |
bilt_send_message | Execute build/deploy instructions |
bilt_resume_workflow | Resume paused workflows |
bilt_cancel_workflow | Cancel running workflows |
bilt_get_messages | Retrieve workflow message history |
Example Workflow
Agent: bilt_create_project("todo-app")
β Returns: { id: "proj_abc123" }
Agent: bilt_get_session()
β Returns: { session_id: "sess_xyz789" }
Agent: bilt_send_message(
session_id: "sess_xyz789",
message: "Create a todo list with add, delete, and complete features"
)
β Builds app...
Agent: bilt_send_message(
session_id: "sess_xyz789",
message: "Deploy to production"
)
β Returns: { url: "https://todo-app-abc123.bilt.app" }
Documentation
- Introduction - What is Bilt MCP?
- Quick Start - 5-minute setup guide
- API Reference - Complete tool documentation
- Integration Guides - Client-specific setup
- Examples - Step-by-step workflows
Why MCP?
Model Context Protocol is the emerging standard for AI tool integration. Benefits:
β Universal Compatibility - Works with any MCP-compatible client β Standardized Interface - No custom integrations needed β Auto-Discovery - Agents find and use tools automatically β Session Management - Built-in state handling β Real-Time Updates - SSE transport for progress tracking
Technical Details
Connection Details
- Server URL:
https://mcp.bilt.me/mcp/sse - Transport: SSE (Server-Sent Events)
- Alternative: HTTP at
https://mcp.bilt.me/mcp - Authentication: Bearer token (
bilt_live_...) - Rate Limit: 100 requests/minute
Requirements
- MCP-compatible client (Claude Desktop, OpenClaw, Cursor, etc.)
- Bilt account with API token
- Internet connection (remote server)
Supported Platforms
- β macOS
- β Windows
- β Linux
- β Any platform with MCP client support
Use Cases
π€ Autonomous App Development
AI agents build entire applications from scratch - from initial requirements to production deployment.
β‘ Rapid Prototyping
Generate working prototypes in minutes for testing ideas and gathering feedback.
π§ Feature Development
Add new features to existing projects through natural language instructions.
π₯ Multi-Agent Collaboration
Multiple agents work on different aspects of a project simultaneously.
Examples
See the examples/ directory for:
- Complete workflow examples
- Multi-step builds
- Error handling patterns
- Advanced use cases
FAQ
Is this open source?
The Bilt MCP server is a proprietary service. This repository contains documentation and integration examples. The server itself runs on Bilt's infrastructure.
How much does it cost?
Bilt offers a free tier for experimentation. See bilt.me/pricing for details.
Can I self-host?
Currently, Bilt MCP is cloud-only. We may offer self-hosted options for enterprise customers in the future.
What kind of apps can I build?
Bilt specializes in mobile applications built with React Native and Expo. Supports iOS and Android.
Is my data secure?
Yes. All communication uses HTTPS. API tokens are required for authentication. Your code and data remain private.
Support
-
π Documentation: bilt.me/docs
-
π¬ Discord: Join our community
-
π§ Email: support@bilt.me
-
π Issues: GitHub Issues
Community
License
Copyright Β© 2024-2026 Bilt. All rights reserved.
The Bilt MCP server is proprietary software. This repository contains documentation and examples under the MIT License. See LICENSE for details.
Acknowledgments
Built with β€οΈ by the Bilt team.
MCP specification by Anthropic.
Made with Model Context Protocol
