Skip to main content
Forest’s orchestrator coordinates your workflows but never executes the steps itself — that runs on Forest Runtime, deployed on your own infrastructure. Forest Runtime polls the orchestrator for pending steps, runs them locally, and reports only the results back. Setting it up is a one-time addition, not a migration: you deploy Forest Runtime and either point your agent at it or embed it in the agent — your collections and existing workflows are untouched. Because it talks to your data through your own Forest agent, the Forest orchestrator never sees your records — data read and written by data steps stays within your infrastructure.
One exception: AI steps and MCP Tasks send prompt content, which can include record data, to an LLM provider and remote tools — so workflows aren’t fully air-gapped. See AI provider.

Do I need Forest Runtime?

Yes — Forest Runtime is what executes your workflow steps. Automatically-triggered workflows especially: a webhook call or an AI assistant can fire at any time, with no guarantee anyone has Forest open in a browser, so those runs can only execute server-side. Until Forest Runtime is installed, both automated triggers stay locked in the workflow’s settings. Running on infrastructure you control also keeps the records handled by data steps out of Forest’s infrastructure — decisive for compliance or data-residency requirements, or when a step needs access to systems reachable only from within your network.

How it works

  1. A workflow is triggered — by a user, a webhook, or an AI assistant. The Forest orchestrator queues the pending steps.
  2. Forest Runtime polls the orchestrator and pulls the steps assigned to it.
  3. Each step runs locally, reaching your data and actions through your Forest agent.
  4. It reports the step outcome back to the orchestrator, which advances the workflow.

Prerequisites

  • A recent Forest Admin agent — the minimum version depends on how you run Forest Runtime (below).
  • A PostgreSQL database for production: Forest Runtime persists its run state there. A database-free mode exists for testing only.

Running Forest Runtime

Run Forest Runtime one of two ways:
  • Embedded in your Node.js agent — one line in your agent, nothing separate to deploy. The simplest option.
  • Standalone — a separate process (Docker or CLI), to scale it independently of your agent or to use it with a Ruby agent.

Embedded in the Node.js agent

Requirements:
  • @forestadmin/agent — embedded mode arrived in 1.84.0, but the options shown below (schema, ai, encryptionKey, the tuning knobs) landed in later releases, so use a recent version.
  • Node.js ≥ 22.12.0 — required by the executor package.
  • The executor package, installed at the exact version your agent pins. It’s an optional peer dependency the agent loads dynamically at runtime, so tsc won’t flag it when it’s missing — but agent.start() throws “The embedded workflow executor requires the @forestadmin/workflow-executor package”. The pin is exact (a ^ range conflicts), so install that specific version — find it in your lockfile or with npm info @forestadmin/agent@<your-agent-version> peerDependencies (pin the version you actually run — without it, npm answers for latest, whose pin may differ):
  • TypeScript 5.5+ — the package ships zod 4, which is only tested against TypeScript 5.5 and later. On TypeScript 4.x its typings can’t even be parsed, and skipLibCheck won’t help (it suppresses type errors, not the syntax errors these typings trigger).
Then add one line — the executor runs inside the agent process, so there’s nothing else to deploy:
Safe to reuse the database your agent already reads: the executor keeps its tables in a dedicated forest Postgres schema, so they stay out of the public schema your datasource introspects and never show up as collections in your panel. Pass a schema if you’d rather name it differently.Creating that schema needs the CREATE privilege on the database. If your role doesn’t have it, have an administrator create the schema and grant the role access to it — the executor checks whether the schema already exists before trying to create one, so a pre-created schema boots fine with schema-level privileges only.
It inherits your agent’s secrets and Forest connection, so you only configure:
Embedded has full configuration parity with standalone: your own AI provider (ai), the encryption key, and every tuning knob are all settable here. It only inherits your agent’s secrets and Forest connection; set nothing and AI steps use Forest’s AI server.

Standalone (Docker or CLI)

Run Forest Runtime as its own service — the way to run it with any agent other than the v2 Node.js one (which can also embed it), and to scale or deploy it separately. 1. Point your agent at it with the workflow executor URL, so the agent mounts the route that forwards workflow requests to Forest Runtime (relaying the JWT). It’s supported across both agent generations:
The Python agents (agent-python, django-forestadmin) don’t support the workflow executor yet.
If the workflow executor URL is left unset, the agent returns 404 on those routes and Forest Runtime never receives any work. When the agent and Forest Runtime run on separate hosts, use an internal address the agent can reach on Forest Runtime’s HTTP port (default 3400). 2. Run the executor as a Docker image or via the CLI:
When Forest Runtime runs in Docker and your agent runs on the host machine, use host.docker.internal instead of localhost in AGENT_URL and DATABASE_URL. On Linux Docker Engine that hostname doesn’t exist by default, so the --add-host=host.docker.internal:host-gateway flag above is required to resolve it (on Docker Desktop it’s already provided and the flag is harmless).

Network requirements

A standalone Forest Runtime opens these connections (an embedded executor makes the same outbound calls from the agent process, with no extra inbound port): On first boot Forest Runtime auto-creates its workflow_step_executions table, then polls the orchestrator every 30 seconds (POLLING_INTERVAL_S) for work. Forest Runtime is stateless apart from its Postgres database: you can run several instances against the same database for high availability — each pending step is claimed by exactly one instance. If you use OAuth-protected MCP connectors, give every instance the same encryption key.

Health check

GET /health is public (no auth) and returns the runtime’s current state:
For liveness probes, treat any 200 as healthy. For readiness probes, route traffic only on {"state":"running"} so a draining instance stops receiving new work while it finishes in-flight steps.

AI provider

Several step types rely on an LLM: guidance, decisions, MCP Tasks, and AI-assisted data steps. By default Forest Runtime uses Forest’s AI server — no configuration required, AI steps work out of the box. To keep AI calls off Forest’s server and use your own provider and key instead, set all three variables together:
This is all-or-nothing: set the three together to use your own provider, or leave all three unset to fall back to Forest’s AI server. Setting only some of them fails at startup.

OAuth-protected MCP connectors

If your workflows include MCP Tasks backed by OAuth-protected connectors, Forest Runtime stores each user’s OAuth credentials in its database, encrypted at rest. Provide the encryption key:
  • Required only for OAuth-protected MCP connectors, and read lazily — an instance that stores no such credentials runs fine without it.
  • Use the same value on every instance that shares a database, or an instance won’t decrypt credentials written by another.
  • Treat it as permanent: there is no managed rotation. Changing it forces every affected user to reconnect their connectors.

Observability

The Docker image ships with OpenTelemetry APM built in, compatible with any OTLP backend (Datadog, Grafana Tempo, Jaeger, Honeycomb…). It is off by default and turns on as soon as you set OTEL_EXPORTER_OTLP_ENDPOINT. OpenTelemetry is bundled only in the Docker image, not the npm package.

Tuning

Beyond the required variables, these optional knobs have sensible defaults and rarely need changing:
For the remaining variables (individual database parts, DATABASE_SSL, in-memory testing mode, full OTel configuration), see the package README on npm.

Learn more

Workflows overview

Build and manage workflows in the no-code editor

MCP Servers

Configure the connectors used by MCP Tasks