Bilt MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Bilt MCP Servercreate a todo app with user authentication and deploy it"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Bilt MCP Server
Connect an MCP-compatible AI client to Bilt to create and manage mobile app projects.
Connection details
Setting | Value |
URL |
|
Transport | Streamable HTTP |
Authentication |
|
Create an API token at Bilt API keys. The legacy /mcp/sse endpoint is no longer available.
Related MCP server: MCP Vibe Coding Tools
Client setup
Claude Desktop
Claude Desktop launches local MCP commands from claude_desktop_config.json. Use mcp-remote to bridge stdio to Bilt and attach the API-key header:
{
"mcpServers": {
"bilt": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.bilt.me/mcp",
"--transport",
"http-only",
"--body-timeout",
"0",
"--header",
"Authorization:${BILT_AUTH_HEADER}"
],
"env": {
"BILT_AUTH_HEADER": "Bearer bilt_live_YOUR_TOKEN_HERE"
}
}
}
}Keep Authorization:${BILT_AUTH_HEADER} as one argument, without a space after the colon. On Windows, if Claude resolves npx through a broken Program Files path, set command to the absolute npx.cmd path or its 8.3 short-path equivalent.
Do not add Bilt through Claude's custom connector UI unless it supports a static Authorization header. Without that header, it may attempt OAuth, which Bilt does not currently support.
Cursor
Add this to .cursor/mcp.json:
{
"mcpServers": {
"bilt": {
"url": "https://mcp.bilt.me/mcp",
"headers": {
"Authorization": "Bearer bilt_live_YOUR_TOKEN_HERE"
}
}
}
}OpenClaw
Add this to ~/.openclaw/openclaw.json:
{
"mcp": {
"servers": {
"bilt": {
"url": "https://mcp.bilt.me/mcp",
"transport": "streamable-http",
"headers": {
"Authorization": "Bearer bilt_live_YOUR_TOKEN_HERE"
}
}
}
}
}Restart the OpenClaw gateway after changing the configuration.
For another client, use native Streamable HTTP only if the client supports custom Authorization headers. Otherwise, use the same mcp-remote stdio bridge shown for Claude Desktop. Client configuration field names are not universal.
Available tools
Bilt exposes seven tools:
Tool | Purpose |
| List projects owned by the authenticated user |
| Get one project by |
| Create a project from a |
| Get session and workflow state for a |
| Send build instructions or answer paused workflow questions |
| Cancel the active workflow for a |
| Get conversation history for a |
All public input fields use camelCase. bilt_send_message accepts a projectId and either a message or structured question answers. Question answers are passed as a JSON string and require the paused response's workflowId:
{
"projectId": "project-id",
"workflowId": "workflow-id",
"answers": "[{\"questionIndex\":0,\"selectedOptions\":[\"Option A\"]}]"
}There is no separate resume tool. If a workflow pauses for questions, answer them with bilt_send_message. If it pauses for secrets or a Supabase connection, open the returned projectUrl, complete the requested action there, and the workflow will resume automatically.
Queued workflows count as active. Before sending unrelated work, call bilt_get_session and wait until hasActiveWorkflows is false.
Raw HTTP
MCP clients must send Accept: application/json, text/event-stream:
curl -N https://mcp.bilt.me/mcp \
-H 'Authorization: Bearer bilt_live_YOUR_TOKEN_HERE' \
-H 'Accept: application/json, text/event-stream' \
-H 'Content-Type: application/json' \
-H 'Mcp-Protocol-Version: 2025-03-26' \
--data '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-03-26","capabilities":{},"clientInfo":{"name":"curl","version":"1.0.0"}}}'Use an MCP client for normal operation; the raw request is only a transport check.
Migration from legacy SSE
Existing configurations must:
Change
https://mcp.bilt.me/mcp/ssetohttps://mcp.bilt.me/mcp.Select Streamable HTTP and disable SSE fallback.
Keep the Bearer token in the Authorization header.
Update stale tool calls to the seven-tool camelCase contract above.
Documentation and support
The hosted Bilt MCP server is proprietary. This repository contains documentation, examples, and agent skill metadata under the terms in LICENSE.
This server cannot be deployed
Maintenance
Related MCP Connectors
Build and host full-stack apps from a prompt, with agents that reach you on WhatsApp and email.
One message in, a full agentic application out: website and MCP app, live. Built from any AI client.
Deploy and manage your apps, databases, storage, and scheduled jobs from your AI agent
Build and publish full-stack apps from your coding agent: models, rules, pages, auth, per-app MCP.
Related MCP Servers
AlicenseAqualityAmaintenanceEnables AI assistants to interact with iOS Simulators and Android Emulators, allowing autonomous app development, UI interaction, profiling, and debugging through natural language.772,896Apache 2.0- AlicenseBqualityDmaintenanceTransforms any prompt into a fully functional, production-ready product with zero human intervention by providing 150+ autonomous tools covering all aspects of software development.331MIT
- AlicenseNot gradedqualityAmaintenanceEnables AI agents to deploy code to any hosting provider by creating PRs, building, and verifying health checks, all from a single natural language command.1MIT
- AlicenseBqualityBmaintenanceEnables building Flutter and Dart apps through a multi-agent system that orchestrates specialized agents for UI design, backend development, testing, and deployment.231MIT