What the Builder MCP can do
Every app runs in its own isolated sandbox with a public preview URL. Each connection is bound to one tenant and scoped to it — no other tenant is reachable.
Get your connection details
You get everything you need from the app. Open Builder Mode and go to the Credentials tab — the Builder connection panel there shows your three values:The token is created automatically the first time you use the builder. You can roll it any time from the Credentials tab (Recreate token), or delete it to revoke access — a new one is minted automatically the next time a builder is used. Keep it secret: it authorizes everything for your tenant.
Before you start
Make sure you have:- access to your Mihu tenant,
- an MCP-compatible client (Claude Desktop, Claude Code, Cursor, or a custom client),
- Python with the MCP package installed:
pip install mcp, - and your Server, Tenant, and Token from Builder Mode → Credentials.
Run the server (stdio)
Runmcp_server.py with your three values as environment variables:
Register it with your MCP client
Claude Desktop
In Settings → Developer → Edit Config, add an MCP server:Claude Code
Build flow (asynchronous — poll after each write)
Building is asynchronous, so always poll after a write:- Describe it — call
create_agentwith a one-sentence prompt. - Poll — call
get_agent(~every 2–3s) whilestatus: processing. - Answer questions — while
status: gathering, the builder asks what it needs (credentials, size, schedule); callanswer_agentand keep polling. - Approve — when
status: awaiting_approval, callapprove_agentto build, deploy, and run automated checks (AI code review + tests). - Live — once
status: deployed, the app is running with a preview URL. Operate it withstart_deployment/stop_deployment/get_logs/exec_command, or ask for changes (the builder rebuilds the live app).
deploy_code.
Test the connection
Try these once connected:- “List my builders.”
- “Build a small JSON API that stores and returns leads.”
- “Show the logs for my last deployment.”
Troubleshooting
Support
- Platform:
https://builder.mihu.ai - Status / health:
https://builder.mihu.ai/health→{"status": "ok"} - Issues: email support@mihu.ai