Muster Docs

Engines & models

An engine is a connection to an AI model — a CLI that's already logged in on your machine, an API provider with a key, or your own OpenAI- or Anthropic-compatible endpoint. Every bot runs on one, you can swap it mid-conversation, and every reply is stamped with exactly which engine produced it.

10+ CLI engines 12 API providers Custom endpoints (BYO) Local models via Ollama

What an engine is

An engine is how a bot gets a brain. Muster supports three kinds:

All of them normalize to the same runtime event stream — streaming replies, tool calls, approvals — so a bot behaves identically no matter which engine sits underneath. Swapping models mid-conversation is normal practice: let the cheap one triage, the smart one write.

Adding an engine in Settings

Open Settings and you'll find two relevant panels:

For the very first setup, muster setup walks you through connecting to the server and picking an engine before introducing your first bot — see Quick start.

Naming instances

Each engine connection is an instance, and you can have several per provider — that's not a workaround, it's the intended shape. Two OpenAI keys with different budgets, a personal and a work Anthropic account, one OpenRouter instance routed through a gateway and one direct: each gets its own entry, its own key, and its own display name. Bots pick an instance, not just a provider, so the assignment is exact.

Assigning engines to bots

Every bot carries its own model selection: an instance plus a model from that instance's list. Set it when you hire the bot, change it later from the bot's settings or the model picker in the chat header, and the next turn uses it — the transcript doesn't care. Two bots in the same team can run on entirely different providers, and handing one conversation from a fast model to a frontier one mid-thread takes one click.

Your keys stay on your server

Muster is bring-your-own-key by design. API keys are stored server-side in your data directory (~/.muster on a desktop install), never echoed back to the UI once saved — the settings panel shows a configured-or-not flag — and never sent anywhere except to the provider the key belongs to. Custom-provider keys ride the instance's own environment into the driver, not a shared process env. There is no Muster-side key escrow and no model billing through us: usage is between you and your providers.

Note Self-hosted multi-tenant deployments block loopback and private-range custom-provider base URLs (an SSRF guard — one account must not probe the host network through a fake provider). Desktop single-user installs keep loopback allowed, which is exactly why 127.0.0.1 Ollama works out of the box there.

Health and status

Muster watches engines from local signals, never by scraping provider dashboards:

Provenance chips

Every bot reply in chat carries a small via chip — the model, and when it differs, the instance display name that produced it. It's low-key by default: hover the reply and the chip fades in, with the full instance name (and effort level, when set) in its tooltip. When you swap a bot's model mid-thread, the older bubbles still show what produced them, so "which brain said this?" is always answerable by looking.

Browsers and computers

An engine is the thinking half of a bot; the computer is the doing half. Bots on computer-use-capable providers can drive a live browser — a session in the chat's side panel that you can watch frame-by-frame and grab control of mid-task — alongside the other computer options (cloud desktop, your own machine, a local VM, or a BYO VPS over SSH). See Approvals & privacy for what the bot may do on that computer without asking first.

Quick reference

You wantDo this
Use a logged-in CLI agentInstall the CLI, sign in — it appears in the picker
Use an API providerSettings → Providers → paste the key
Use Ollama / LM Studio / a gatewaySettings → Providers → Add model provider
Override a CLI's binary pathSettings → Engines → Set CLI…
Two accounts on one providerRegister two instances, name them, assign per bot
Check who repliedHover the reply — the via chip shows model and instance

Next: put engines to work — Goals & autonomy and Automation.