PromptUI — Build. Verify. Launch. Grow. Operate.
Build and grow from the coding agent you already use
PromptUI connects to Codex, Claude Code, and Cursor through a shared tool standard (Model Context Protocol, or MCP). Your agent can ask PromptUI to build and publish an app, then use the same product context to draft marketing work, review the queue, publish an approved post, and read results. You stay in control: anything that spends credits or publishes outside your account requires explicit confirmation.
Growth publishing to supported connected social channels and Operate v1 are live in PromptUI. The current MCP server exposes Builder, Launch and Growth tools; Operate remains in the web app. Paid-ad creation, activation and spend are separate and are not exposed by this connector.
What your agent can do
Build and publish
build_app— start a PromptUI buildget_build_status— check progress and open the previewlist_builds— find your recent projectsdeploy_app— publish a completed app after confirmation
Create and grow
gtm_generate_content— create and save a draftgtm_list_content— review saved, approved, or scheduled workgtm_publish_content— publish one approved item after confirmationgtm_get_analytics— read current channel results
Growth tools follow the same access rules as the Growth Agent workspace. They are available on Unlimited, Launch Pro, Team, Enterprise, and standalone Growth Agent plans. Publishing an approved item to a supported connected social channel is live and remains confirmation-gated.
1. Get your API key
Sign in and copy your pui_ key from Dashboard → Settings. The key acts as your account: anything an agent builds or deploys with it uses your credits and shows up in your dashboard.
2. Connect your client
Claude Code
export PROMPTUI_API_KEY="pui_YOUR_KEY"
claude mcp add --transport http promptui https://www.promptui.co/api/mcp \
--header "Authorization: Bearer ${PROMPTUI_API_KEY}"Codex CLI
Set the key in your shell, then add this native remote-server entry to ~/.codex/config.toml:
export PROMPTUI_API_KEY="pui_YOUR_KEY"
[mcp_servers.promptui]
url = "https://www.promptui.co/api/mcp"
bearer_token_env_var = "PROMPTUI_API_KEY"Cursor
Add to .cursor/mcp.json in your project (or ~/.cursor/mcp.json globally):
{
"mcpServers": {
"promptui": {
"type": "http",
"url": "https://www.promptui.co/api/mcp",
"headers": { "Authorization": "Bearer pui_YOUR_KEY" }
}
}
}What works today: the local Codex, Claude Code, and Cursor clients above. A one-click hosted connector inside ChatGPT or claude.ai is not live or listed. Its internal candidate uses the existing PromptUI sign-in owner and a tenant-bound OAuth token, but still needs the external Clerk application configuration and an exact hosted-connector test before release.
3. Use it
"Build me a booking page for a yoga studio, then deploy it."
→ build_app { prompt: "a booking page for a yoga studio" }
→ confirm the credit-spending build action
→ get_build_status { buildId } … status: completed, previewUrl
→ confirm the public publishing action
→ deploy_app { buildId } → live URLIf the planner needs a clarification, get_build_status returns a link to answer it in the browser — the build resumes where it paused. Repos you export from PromptUI include this setup pre-wired: an AGENTS.md and .mcp.json so your agent can keep iterating on the app.
Pricing & limits
Your Codex or Claude subscription pays for the work done by that coding agent, subject to its own limits. PromptUI actions still follow your PromptUI plan and credit balance. A default build is 50 credits. A first publish is 25 credits, and updates to the same published app are free. Social-platform charges and advertising spend are separate and remain in the connected business's account. See pricing before you run a metered action.