Everything you need to deploy, manage, and integrate with AgentBuilders.
Install the AgentBuilders CLI to deploy apps, manage data, and administer your account from the terminal.
npm install -g agentbuilders
# Deploy an app ab deploy --name my-app --dir ./dist # List your apps ab list # View app details ab get my-app
Compatibility: CLI package 0.6.x targets AgentBuilders API/MCP protocol 0.9.x.
Use AgentBuilders as an MCP tool server. Connect Claude Code, Cursor, or any MCP-compatible agent.
{
"mcpServers": {
"agentbuilders": {
"transport": "streamable-http",
"url": "https://api.agentbuilders.app/mcp",
"headers": { "Authorization": "Bearer YOUR_API_KEY" }
}
}
}
Direct REST API for deploying apps, querying databases, managing files, and more. Works with any HTTP client or agent framework.
# Quick deploy
curl -X POST https://api.agentbuilders.app/deploy \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{"name":"my-app","files":{"index.html":"<h1>Hello</h1>"}}'
Every deployed app with backend capabilities gets the browser SDK automatically as window.ab (no script tags needed). Server-side Python/Node wrappers are on the roadmap.
window.ab