Provides an API-driven MCP server enabling AI agents to autonomously create, build, and deploy mobile applications with real-time updates.
Configuration
View docs{
"mcpServers": {
"buildingapplications-mcp": {
"url": "https://mcp.bilt.me/mcp/sse"
}
}
}You can access Bilt’s MCP server to empower AI agents to autonomously create, build, and deploy production-ready mobile applications through a secure, real-time connection. This server focuses on providing an end-to-end lifecycle for mobile app projects with live progress updates and strong authentication.
To use the Bilt MCP Server, first obtain an API token by signing up at bilt.me/sign-up and generating your key. Then configure your MCP client to point to the Bilt MCP Server and authenticate requests. After setup, you can guide your AI agent to create and manage projects, drive builds, and deploy productions apps with natural language prompts.
Prerequisites: Ensure you have access to an MCP-compatible client and a Bilt account with an API token.
1) Sign up and obtain your API token from bilt.me/sign-up.
2) Choose your MCP client and apply the appropriate configuration snippet from the quick start examples below.
{
"mcpServers": {
"bilt": {
"transport": {
"type": "sse",
"url": "https://mcp.bilt.me/mcp/sse",
"headers": {
"Authorization": "Bearer bilt_live_YOUR_TOKEN_HERE"
}
}
}
}
}Ask your agent to create a basic app, for example: “Use Bilt to create a todo app with authentication.” Watch the agent autonomously plan, build, and deploy the production app.
Your MCP client will typically require configuring the server URL, transport method (SSE), and an authorization header with your API token. The server provides a complete lifecycle from project creation to production deployment, with real-time updates to track progress.
List all projects for the authenticated user.
Get detailed information about a specific project.
Create a new project with specified parameters.
Get the current workflow session status.
Execute build or deployment instructions for the active session.
Resume a paused workflow.
Cancel a running workflow.
Retrieve the history of workflow messages.