home / mcp / bilt mcp server

Bilt MCP Server

Provides an API-driven MCP server enabling AI agents to autonomously create, build, and deploy mobile applications with real-time updates.

Installation
Add the following to your MCP client configuration file.

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.

How to use

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.

How to install

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.

Configure your MCP client with the server

{ 
  "mcpServers": {
    "bilt": {
      "transport": {
        "type": "sse",
        "url": "https://mcp.bilt.me/mcp/sse",
        "headers": {
          "Authorization": "Bearer bilt_live_YOUR_TOKEN_HERE"
        }
      }
    }
  }
}

Test it with a simple prompt

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.

Additional guidance for clients

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.

Available tools

bilt_list_projects

List all projects for the authenticated user.

bilt_get_project

Get detailed information about a specific project.

bilt_create_project

Create a new project with specified parameters.

bilt_get_session

Get the current workflow session status.

bilt_send_message

Execute build or deployment instructions for the active session.

bilt_resume_workflow

Resume a paused workflow.

bilt_cancel_workflow

Cancel a running workflow.

bilt_get_messages

Retrieve the history of workflow messages.