Community Edition & Cloud
Install SyntheticBrew: coding agent, Docker, or binary
Let your coding agent set everything up over MCP, or self-host the full AI agent runtime — admin dashboard, REST and SSE API, and PostgreSQL-backed state included.
Install with your coding agent (MCP) recommended
Your coding agent connects to the SyntheticBrew MCP server and provisions a ready-to-embed agent for you — no dashboard clicking.
Create a free account at /register, then run the command for your agent below. Your browser opens to sign in — there is no token to copy.
A browser opens to sign in — no token to copy.
$ claude mcp add --transport http syntheticbrew https://app.syntheticbrew.ai/api/v1/mcp/rpc $ claude mcp login syntheticbrew A browser opens to sign in — no token to copy.
$ codex mcp add syntheticbrew --url https://app.syntheticbrew.ai/api/v1/mcp/rpc $ codex mcp login syntheticbrew Add to ~/.cursor/mcp.json — Cursor opens a browser to sign in.
{ "mcpServers": { "syntheticbrew": { "type": "http", "url": "https://app.syntheticbrew.ai/api/v1/mcp/rpc" } } } VS Code opens a browser to sign in.
$ code --add-mcp '{"name":"syntheticbrew","type":"http","url":"https://app.syntheticbrew.ai/api/v1/mcp/rpc"}' mcpServers config for any MCP client that supports OAuth.
{ "mcpServers": { "syntheticbrew": { "type": "http", "url": "https://app.syntheticbrew.ai/api/v1/mcp/rpc" } } } What happens next
- Add the MCP server with the command above.
- Run the login command — a browser opens; create an account or sign in and approve.
- Tell your agent what you need. It provisions the agent, configures it, and hands you the embed snippet.
Total time: under 5 minutes. No config files.
Self-hosting?
Point the same command at <your-engine-url>/api/v1/mcp/rpc and pass a token header — open /admin → API Keys → “Connect a coding agent” to mint one: --header "Authorization: Bearer YOUR_TOKEN".
No account yet? Ask our docs first:
claude mcp add --transport sse syntheticbrew-docs https://mcp.syntheticbrew.ai/sse A public docs-search MCP server with one search_docs tool — no signup.
Docker Compose self-hosted
Download the verified Compose configuration, then start SyntheticBrew Engine and PostgreSQL 16. Ready in about 30 seconds.
curl -fsSL https://syntheticbrew.ai/releases/docker-compose.yml -o docker-compose.yml docker compose up -d Open http://localhost:8443/admin to configure your first agent. To upgrade later, run docker compose pull && docker compose up -d.
Standalone binary
Install without Docker
The engine is open source — build the binary straight from the repository. You need Go 1.25+ and an existing PostgreSQL 14 or later database.
git clone https://github.com/syntheticinc/syntheticbrew && cd syntheticbrew/engine go build -o syntheticbrew ./cmd/ce After the build
Point the Engine at your database, set a model key, and start it.
export DATABASE_URL="postgresql://user:pass@host:5432/syntheticbrew" export LLM_API_KEY=sk-... ./syntheticbrew Then open http://localhost:8443/admin to configure your first agent. The Engine automatically creates all tables on first start — no manual SQL needed. On Windows, use Docker Compose above or build with the same Go command in PowerShell.
Enterprise Edition
Upgrade a self-hosted install to Enterprise Edition
Enterprise Edition activates on top of Community Edition with a license file — no reinstall and no separate build. Without a license, the Engine keeps running as Community Edition.
- Get your
license.jwtfrom the SyntheticBrew dashboard. - Place it at
~/.syntheticbrew/license.jwton the host running the Engine. - Restart the Engine — licensed Enterprise Edition features are now active.
See what Enterprise Edition includes on the pricing page.
System requirements
| Resource | Docker Compose | Binary |
|---|---|---|
| Docker | 20.10+ | Not needed |
| Go toolchain | Not needed | 1.25+ (build from source) |
| CPU | 1 core; 2+ recommended | Same |
| RAM | 1 GB; 2 GB+ recommended | 512 MB plus PostgreSQL |
| Disk | 500 MB plus data | 100 MB plus PostgreSQL data |
| PostgreSQL | Included | 14+ required |
| Network | Outbound to your LLM provider | Same |
Keep going with the docs
Quick start: your first agent →
Docker deployment guide · Kubernetes deployment with the Helm chart
After install
Connect SyntheticBrew to your product
Open source
SyntheticBrew community: GitHub and docs
Licensed under BSL 1.1 — free to self-host, converting to Apache 2.0 after four years.