Multica Docs

Environment variables

Common server, storage, integration, and runtime configuration for self-hosting Multica.

Multica reads environment variables at process startup. After changing one, restart the affected API, web, or daemon process. Docker Compose's docker compose restart does not re-read .env; recreate containers with up -d for changes to take effect.

This page lists deployment-facing configuration only; test variables and internal task variables are not covered here. It is a grouped reference — for full deployment steps, see the self-host quickstart.

Minimum production configuration

DATABASE_URL=postgres://user:password@postgres:5432/multica?sslmode=require
JWT_SECRET=<long-random-secret>
APP_ENV=production
FRONTEND_ORIGIN=https://multica.example.com
MULTICA_APP_URL=https://multica.example.com
MULTICA_PUBLIC_URL=https://api.multica.example.com

You also need to pick an email service, otherwise verification codes and invitations are only written to the server log.

Do not use the default JWT_SECRET in production, and do not set MULTICA_DEV_VERIFICATION_CODE.

API and database

VariableDefaultDescription
DATABASE_URLlocal multica databasePostgreSQL connection string
DATABASE_MAX_CONNS25Maximum database connections per API process
DATABASE_MIN_CONNS5Minimum connections each API process keeps
PORT8080API listen port
JWT_SECRETfixed development valueSecret for sign-in JWTs and some signing flows
APP_ENVemptySet to production in production
AUTH_TOKEN_TTL720h (30 days)Lifetime of browser JWTs and cookies; accepts a Go duration or a positive integer of seconds
LOG_LEVELapplication defaultLog level
MULTICA_SHUTDOWN_HOLD_DURATION0How long to wait after a termination signal before graceful shutdown begins

When setting a shutdown hold on Kubernetes, terminationGracePeriodSeconds must exceed the hold plus the time the actual shutdown needs.

Public URLs and browser access

VariableDefaultDescription
FRONTEND_ORIGINemptyFrontend origin users visit; used for CORS, cookies, and invitation links
MULTICA_APP_URLfalls back to FRONTEND_ORIGINUser-reachable web URL; CLI sign-in and account-link URLs use it
MULTICA_PUBLIC_URLemptyPublic API URL; used for webhook URLs and runtime connection instructions
CORS_ALLOWED_ORIGINSemptyExtra allowed HTTP origins, comma-separated
ALLOWED_ORIGINSfalls back to CORS / frontend originsWebSocket origin allowlist, comma-separated
COOKIE_DOMAINemptyRequired when the frontend and API use different hosts and the browser talks to the API domain directly; keep empty for single-domain deployments

When the frontend and API run on different hosts and the browser talks to the API domain directly, you must set COOKIE_DOMAIN — otherwise the browser cannot read the CSRF cookie: every write request returns 403 CSRF validation failed while reads work fine. Use the narrowest parent domain that covers both hosts (.agent.example.com over .example.com). It spreads the sign-in session cookie to every host under that domain, which is only acceptable when all of those hosts are operated by the same trusted party. After changing it, clear the old cookies on both hosts and sign in again. If you follow the same-origin recipe in the self-host quickstart (the browser only visits the app domain), keep it empty. Do not use an IP address — browsers ignore cookies whose Domain is an IP.

Self-hosted deployments must set FRONTEND_ORIGIN. Without it, invitation links, cookie security attributes, and WebSocket origin checks can all disagree with your actual domain.

Email and sign-in

Resend

VariableDefaultDescription
RESEND_API_KEYemptySetting it enables Resend
RESEND_FROM_EMAILnoreply@multica.aiSender address; must belong to a verified domain

SMTP

SMTP takes priority over Resend whenever SMTP_HOST is non-empty.

VariableDefaultDescription
SMTP_HOSTemptySMTP host; setting it enables SMTP
SMTP_PORT25Common values: 25, 587, 465
SMTP_USERNAMEemptyUsername; leave empty for anonymous relays
SMTP_PASSWORDemptyPassword
SMTP_FROM_EMAILfalls back to RESEND_FROM_EMAILEnvelope From and message From
SMTP_TLSstarttlsimplicit, smtps, or ssl means implicit TLS; port 465 enables it automatically
SMTP_TLS_INSECUREfalseSkips certificate verification; trusted internal networks only
SMTP_EHLO_NAMEhostnameEHLO/FQDN required by strict relays

Google OAuth

VariableDefaultDescription
GOOGLE_CLIENT_IDemptyGoogle OAuth client ID
GOOGLE_CLIENT_SECRETemptyGoogle OAuth client secret
GOOGLE_REDIRECT_URIhttp://localhost:3000/auth/callbackMust exactly match the callback URL in the Google Console

Signup scope

VariableDefaultDescription
ALLOW_SIGNUPtrueWhether new accounts can be created when no allowlist is configured
ALLOWED_EMAILSemptyFull email addresses allowed to sign up, comma-separated
ALLOWED_EMAIL_DOMAINSemptyEmail domains allowed to sign up, comma-separated
DISABLE_WORKSPACE_CREATIONfalseBlocks all users from creating workspaces; no owner/admin exception
MULTICA_DEV_VERIFICATION_CODEemptyFixed 6-digit test code for non-production environments

For the exact allowlist evaluation order, see Sign-in and signup.

Attachment storage

When S3_BUCKET is unset, Multica uses local disk.

S3 or compatible storage

VariableDefaultDescription
S3_BUCKETemptyBucket name; do not use the full hostname
S3_REGIONus-west-2Region the bucket lives in
AWS_ACCESS_KEY_IDSDK default credential chainStatic access key
AWS_SECRET_ACCESS_KEYSDK default credential chainStatic secret key
AWS_ENDPOINT_URLemptyS3-compatible endpoint such as MinIO
S3_USE_PATH_STYLEtrue with a custom endpointWhether to use path-style addressing
ATTACHMENT_DOWNLOAD_MODEautoauto, cloudfront, presign, or proxy
ATTACHMENT_DOWNLOAD_URL_TTL30mLifetime of signed download URLs

Use ATTACHMENT_DOWNLOAD_MODE=proxy when the endpoint — an internal MinIO, for example — is not reachable from the browser.

Local disk

VariableDefaultDescription
LOCAL_UPLOAD_DIR./data/uploadsDirectory for files and metadata; needs a persistent volume
LOCAL_UPLOAD_BASE_URLemptyOptional public base URL; when empty, in-app relative URLs are returned

CloudFront

VariableDescription
CLOUDFRONT_DOMAINCDN domain
CLOUDFRONT_KEY_PAIR_IDCloudFront key pair ID
CLOUDFRONT_PRIVATE_KEYFull private key
CLOUDFRONT_PRIVATE_KEY_SECRETUse when reading the private key from Secrets Manager

Redis and rate limiting

VariableDefaultDescription
REDIS_URLemptyUsed for shared rate limiting, realtime events, and the token cache; when unset, realtime events and invitation limits fall back to in-process memory, while auth rate limiting is off
REDIS_DISABLE_CLIENT_NAMEfalseSet true when a managed Redis blocks CLIENT SETNAME
RATE_LIMIT_AUTH5Per-IP requests per minute to send a verification code or start Google sign-in
RATE_LIMIT_AUTH_VERIFY20Per-IP code verifications per minute
RATE_LIMIT_INVITATION_ACTOR_10M10Workspace invitations each inviter may create per 10-minute sliding window; 0 disables this gate
RATE_LIMIT_INVITATION_WORKSPACE_24H50Workspace invitations all admins may create per workspace per 24-hour sliding window; 0 disables this gate
RATE_LIMIT_INVITATION_RECIPIENT_24H6Invitations one normalized recipient email may receive across workspaces per 24-hour sliding window; 0 disables this gate
RATE_LIMIT_TRUSTED_PROXIESemptyComma-separated proxy CIDRs allowed to provide X-Forwarded-For
MULTICA_TRUSTED_PROXIESemptyTrusted proxy CIDRs for automation webhooks and realtime connections

Deployments behind a reverse proxy must list their real proxy ranges. Do not blanket-trust all sources, or clients can forge forwarded IPs.

The auth rate limits require REDIS_URL; without it, the startup log notes that auth rate limiting is disabled. Invitation limits still run in process-local memory without Redis and become shared across replicas when Redis is configured. If configured Redis becomes temporarily unavailable, auth rate limiting fails open, while invitation creation returns a retryable 503 instead of sending email without protection.

External integrations

IntegrationVariableDescription
GitHubGITHUB_APP_SLUGGitHub App slug
GitHubGITHUB_WEBHOOK_SECRETWebhook HMAC and connect-state signing secret
GitHubGITHUB_APP_IDNeeded for CI status and mergeability on PR cards and the "pick from GitHub" repository picker
GitHubGITHUB_APP_PRIVATE_KEYFull PEM private key paired with the App ID; same uses as above
LarkMULTICA_LARK_SECRET_KEYBase64-encoded 32-byte credential encryption key
SlackMULTICA_SLACK_SECRET_KEYBase64-encoded 32-byte token encryption key
ComposioCOMPOSIO_API_KEYEnables Composio tool connections
ComposioCOMPOSIO_CALLBACK_BASE_URLCallback API URL; can fall back to MULTICA_PUBLIC_URL
ComposioCOMPOSIO_STATE_SECRETOAuth state signing secret; can be derived from JWT_SECRET
Self-hosted GitMULTICA_VCS_INTEGRATION_ENABLEDForgejo/Gitea/GitLab integration switch; enabled by default in compose
Self-hosted GitMULTICA_VCS_SECRET_KEYBase64-encoded 32-byte encryption key (openssl rand -base64 32); the feature is entirely unavailable without it

Without GITHUB_APP_ID and the private key, PRs still link, mirror, and trigger merge-to-done normally, but cards show no CI or mergeability status, and the "pick from GitHub" repository entry is disabled.

For setup steps, see GitHub integration, Lark bot, and Slack bot.

Server-side LLM

This group configures server-side assist generation, such as conversation titles; it is not the AI coding tool credentials agents use to execute tasks.

VariableDefaultDescription
MULTICA_LLM_API_KEYemptyOpenAI-compatible API key
MULTICA_LLM_BASE_URLemptyOpenAI-compatible endpoint
MULTICA_LLM_DEFAULT_MODELgpt-5.6-lunaUsed when a request does not specify a model

When both the API key and base URL are empty, server-side LLM generation is off and callers use local fallback logic.

Daemon configuration

The variables below are read on the computer that runs your agents, not in the API container.

VariableDefaultDescription
MULTICA_SERVER_URLws://localhost:8080/wsMultica API / WebSocket URL; also accepts http(s)
MULTICA_DAEMON_DEVICE_NAMEhostnameDevice name shown in the runtime list
MULTICA_AGENT_RUNTIME_NAMELocal AgentRuntime display name
MULTICA_DAEMON_POLL_INTERVAL30sTask polling interval when no wake event arrives
MULTICA_DAEMON_HEARTBEAT_INTERVAL15sHeartbeat interval
MULTICA_DAEMON_MAX_CONCURRENT_TASKS20Concurrent task ceiling per daemon
MULTICA_AGENT_TIMEOUT0Absolute time limit per run; 0 means no limit
MULTICA_AGENT_IDLE_WATCHDOG30mSilence ceiling with no output and no tool execution
MULTICA_AGENT_TOOL_WATCHDOG2hSilence ceiling for a single tool call
MULTICA_OPENCODE_IDLE_WATCHDOG10mOpenCode-specific silence threshold
MULTICA_CODEX_SEMANTIC_INACTIVITY_TIMEOUT10mCodex semantic-silence threshold
MULTICA_CODEX_FIRST_TURN_TIMEOUT0Explicit override for the Codex first-turn no-progress ceiling; 0 keeps the default. The effective first-turn wait stays bounded by MULTICA_CODEX_SEMANTIC_INACTIVITY_TIMEOUT and the overall execution timeout — set MULTICA_CODEX_SEMANTIC_INACTIVITY_TIMEOUT strictly above this value (with some margin), or the wait is truncated to it and the model-catalog startup retry is skipped. Equal values are not enough: the semantic timer is armed first, so at equal durations the retry can still be lost
MULTICA_CODEX_HANDSHAKE_TIMEOUT30sCodex app-server startup handshake ceiling
MULTICA_DAEMON_AUTO_UPDATECloud true; self-hosted falseWhether to check for and apply CLI updates automatically
MULTICA_DAEMON_AUTO_UPDATE_INTERVAL6hUpdate check interval
MULTICA_DAEMON_AUTO_RELOADtrueWhether to restart into a multica binary replaced on disk out of band (brew upgrade, a re-download, a local build). Independent of MULTICA_DAEMON_AUTO_UPDATE
MULTICA_WORKSPACES_ROOT~/multica_workspacesRoot directory for task working directories
MULTICA_AGENT_TEMP_BASE/tmp (Linux/macOS)Linux/macOS only. Parent directory for private per-task temp dirs; must be an existing, writable absolute directory, and an invalid value fails task startup instead of falling back to /tmp. Pick a short path — child tools may bind AF_UNIX sockets under it, and sun_path is limited to 108 bytes on Linux and 104 on macOS
MULTICA_KEEP_ENV_AFTER_TASKfalseKeep task directories for debugging

Each AI coding tool accepts MULTICA_<PROVIDER>_PATH and MULTICA_<PROVIDER>_MODEL to override the command path and default model. QwenPaw is the exception: it has no MULTICA_QWENPAW_MODEL, because Multica never sends it a model — see AI coding tools comparison. DeepSeek Harness supports MULTICA_DSH_PATH and MULTICA_DSH_MODEL (a model id from the dsh catalog, e.g. deepseek-official/deepseek-chat). Machine-wide default arguments via MULTICA_<PROVIDER>_ARGS are currently supported for five tools: Claude Code, Codex, CodeBuddy, Qwen Code, and QwenPaw. The variables are MULTICA_CLAUDE_ARGS, MULTICA_CODEX_ARGS, MULTICA_CODEBUDDY_ARGS, MULTICA_QWEN_ARGS, and MULTICA_QWENPAW_ARGS. For example:

MULTICA_CLAUDE_PATH=/opt/bin/claude
MULTICA_CLAUDE_ARGS=--max-turns 40

Precedence is command-line flag → environment variable → ~/.multica/config.json → built-in default. For watchdog behavior, see Daemon and runtimes.

Persisting daemon configuration

Common daemon-side settings can also be written to ~/.multica/config.json instead of relying on shell environment variables; named profiles keep theirs at ~/.multica/profiles/<name>/config.json:

multica config set poll_interval 10s
multica config show

Supported keys:

KeyDefaultDescription
server_urlws://localhost:8080/wsMultica API / WebSocket URL
app_urlemptyWeb URL used for browser sign-in
workspace_idemptyDefault workspace
device_namehostnameDevice name shown in the runtime list
runtime_nameLocal AgentRuntime display name
workspaces_rootprofile-aware path under ~Root directory for task working directories
max_concurrent_tasks20Concurrent task ceiling; 0 or empty means unset
poll_interval30sTask polling interval
heartbeat_interval15sHeartbeat interval
agent_timeoutunlimitedAbsolute time limit per run
codex_semantic_inactivity_timeout10mCodex semantic-silence threshold
codex_handshake_timeout30sCodex app-server handshake ceiling
disable_auto_updatefollows environmenttrue turns auto-update off; false clears the local override and returns to the env var or default
auto_update_check_interval6hUpdate check interval
disable_auto_reloadfollows environmenttrue stops the daemon following a binary replaced on disk; false clears the local override. Resolved separately from disable_auto_update

A few value rules:

  • Duration keys accept positive Go durations (such as 10s, 2h); 0s and negative values are rejected. The one exception is agent_timeout: 0s is valid and explicitly disables the run time limit.
  • Passing an empty string clears a persisted value and falls back to the env var or built-in default, for example multica config set poll_interval "".
  • max_concurrent_tasks requires a non-negative integer.
  • Relative workspaces_root values are converted to absolute paths when saved.

Observability and analytics

VariableDefaultDescription
ANALYTICS_DISABLEDfalseSet true to turn off PostHog reporting
POSTHOG_API_KEYemptyReporting is off when unset; set it to use your own PostHog project
POSTHOG_HOSThttps://us.i.posthog.comPostHog host
METRICS_ADDRemptyPrometheus metrics listen address; empty means not started
REALTIME_METRICS_TOKENemptyBearer token protecting /health/realtime

Next steps