Skip to main content
Yambr is a managed deployment of Open Computer Use. Four public services, each with a distinct job:
ServiceURLWhat it isWho calls it
Dashboardapp.yambr.comWeb app for sign-in, approvals, API keys, live spend trackingYou (in the browser)
MCP endpointapi.yambr.comPublic MCP tool server at /mcp/computer_use. No chat/completions — tool traffic only.Your agent host, any MCP client
Hosted chatchat.yambr.comOpen WebUI with Computer Use pre-installed and models pre-configuredYou (in the browser)
Artifact hostcu.yambr.comPublic file/preview URLs for artifacts created in the sandboxAny browser (URL is the token)
Yambr publishes MCP only. api.yambr.com is not an LLM gateway. /chat/completions, /completions, /embeddings are closed. Your LLM traffic goes to your own provider (OpenAI, Anthropic, a self-hosted LiteLLM, …); your Yambr key unlocks the Computer Use tools.

How they talk to each other

cu.yambr.com is not an MCP endpoint. It hosts sandboxes and serves artifact URLs. The public MCP endpoint is https://api.yambr.com/mcp/computer_use — call that with your Yambr key. See cu.yambr.com.

When to use what

API keys

Sign in with GitHub/Google, get approved, manage up to five keys with live spend.

LiteLLM gateway

The MCP endpoint — https://api.yambr.com/mcp/computer_use. Three ways to wire it in.

Hosted chat

chat.yambr.com — no-setup Open WebUI with Computer Use, models ready to go.

cu.yambr.com

Sandbox containers and public artifact URLs.

Access model

Why MCP-only, and how bring-your-own-model actually works.

Dashboard tour

Walk-through of every screen at app.yambr.com.

Managed vs self-hosted

Managed (Yambr)Self-hosted
Where it runs*.yambr.comYour Docker host
How you get accessKey from app.yambr.com after OAuth + approvalClone repo, docker compose up
Cost$10 / 30-day default budget; per-key max_budgetInfra cost only
Model providerBring your own (OpenAI, Anthropic, LiteLLM-self-hosted, …)Bring your own OPENAI_API_KEY in .env
Public surfaceMCP only (api.yambr.com/mcp/computer_use) + chat.yambr.com + artifactsFull HTTP API on localhost:8081 — you control auth
File URLshttps://cu.yambr.com/files/...http://localhost:8081/files/...
UpdatesAutomaticgit pull && docker compose build
Good forFastest start, most teamsAir-gapped, custom skills, full control
See Self-hosting quickstart for the DIY path.