Use Bilt from your favorite AI client. AI agents can create projects, build apps, and deploy — all through natural language via MCP (Model Context Protocol).
Prerequisites
MCP client Claude Desktop, OpenClaw, Cursor, or any MCP-compatible client
Step 1: Get your API token
Generate an API key
Navigate to Settings → API Keys in your dashboard
Copy the token
Your token looks like: bilt_live_abc123... Save this token. It’s only shown once. Never commit it to version control.
Claude Desktop
OpenClaw
Cursor
Other clients
macOS Edit: ~/Library/Application Support/Claude/claude_desktop_config.json Windows Edit: %APPDATA%\Claude\claude_desktop_config.json Configuration {
"mcpServers" : {
"bilt" : {
"transport" : {
"type" : "sse" ,
"url" : "https://mcp.bilt.me/mcp/sse" ,
"headers" : {
"Authorization" : "Bearer bilt_live_YOUR_TOKEN_HERE"
}
}
}
}
}
Replace YOUR_TOKEN_HERE with your actual API token.
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: Create .cursor/mcp_config.json in your project directory: {
"mcpServers" : {
"bilt" : {
"transport" : {
"type" : "sse" ,
"url" : "https://mcp.bilt.me/mcp/sse" ,
"headers" : {
"Authorization" : "Bearer bilt_live_YOUR_TOKEN_HERE"
}
}
}
}
}
Reload: Cmd/Ctrl + Shift + P → "Reload Window" Use these connection details for any MCP-compatible client:
Server URL : https://mcp.bilt.me/mcp/sse
Transport : SSE (Server-Sent Events)
Auth : Bearer token in Authorization header
Token format : Bearer bilt_live_...
See Other Clients for detailed instructions.
Step 3: Verify the connection
After restarting your client, check that Bilt is connected:
What MCP servers are available?
If you see all 8 tools, you’re connected.
Step 4: Build your first app
Try this in your AI client:
Create a project
Use Bilt to create a new project called "my-first-app"
Build features
Build a todo list app with add, delete, and mark complete
Deploy
Deploy my-first-app to production
Your agent handles the full flow — creating the project, sending build instructions, monitoring progress, and returning a live preview URL.
Troubleshooting
Token must start with bilt_live_
Check for extra spaces in the config
Regenerate at bilt.me → Settings → API Keys
Check internet connectivity
Ensure firewall allows HTTPS (port 443)
Test manually:
curl -H "Authorization: Bearer YOUR_TOKEN" \
https://mcp.bilt.me/mcp/health
Current limit: 100 requests/minute. Wait 60 seconds and retry. Contact support for higher limits.
Next steps
API Reference All 8 MCP tools with parameters and examples
Integration guides Detailed setup for each client