AgentBuilders

Toolkit

Everything you need to deploy, manage, and integrate with AgentBuilders.

CLI Available

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.

MCP (Model Context Protocol) Available

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" }
    }
  }
}

API Available

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>"}}'

SDK Client SDK Available

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.

Client SDK (browser)
window.ab
Available now
Server wrappers
Python + Node helper libs
Roadmap