Describe what you want. Orchex plans, parallelizes, and executes — safely.

One command. Parallel AI agents. Ownership-enforced. Self-healing.

How it works →

Beta — invite required for cloud features

Smithery 92/100 · Official MCP Registry · Available on mcp.so

Your AI assistant has a bottleneck: you

One task at a time. Prompt, wait, review, repeat.
Rate limits hit after 20 minutes. Context degrades after 30.
Agent edits the wrong file. You spend more time fixing than building.
Without orchex
~2 hours
vs
With orchex
~12 minutes

Real numbers from real orchestrations

Based on internal testing and early beta usage.

5-10x
Faster
vs serial agent orchestration
~3 min
Avg Run
Median orchestration time
3
Auto-Retries
Self-healing fix chains
0
File Conflicts
Ownership enforcement

Four steps to parallel execution

01

Describe your intent

One command. orchex auto-generates a plan — or you write your own markdown plan for full control.

$ orchex run "Add user auth with tests"

# Or advanced: write a plan + orchex learn
02

Preview & approve waves

orchex infers dependencies, groups streams into parallel waves, and shows you the plan before running.

Wave 1: types, config        (parallel)
Wave 2: auth, api, ui        (parallel)
Wave 3: integration-tests   (depends on 1,2)
03

Execute with ownership

Streams execute in parallel — each with file-ownership isolation. Ownership prevents agents from breaking each other's code.

auth   → src/auth.ts      WRITE (owned)
api    → src/auth.ts      BLOCKED
ui     → src/components/  WRITE (owned)
04

Verify & self-heal

Verification commands run after each wave. Failures auto-generate fix streams — up to 3 retries.

verify: FAIL — auth.test.ts:42
fix stream: auth_fix_1
verify: PASS — all tests green

Paste a plan. Get parallel streams.

plan.md
## Auth Module
owns: [src/auth.ts, src/middleware.ts]
reads: [src/types.ts]
verify: [npm test -- auth]

## API Routes
owns: [src/routes/api.ts]
reads: [src/auth.ts, src/types.ts]
verify: [npm test -- api]

## UI Components
owns: [src/components/login.tsx]
reads: [src/types.ts]
verify: [npm run lint]
orchex learn
3 streams · 2 waves
Wave 1 (parallel)
  auth   → src/auth.ts, src/middleware.ts
  ui     → src/components/login.tsx

Wave 2 (depends on auth)
  api    → src/routes/api.ts

Write readable plans. orchex learn discovers dependencies, infers file ownership, and generates a parallel execution pipeline. You review and run.

Built for reliable parallel orchestration

providers

Multi-LLM Support

Claude, GPT, Gemini, DeepSeek, Ollama, AWS Bedrock — use any model, bring your own keys.

owns:

File Ownership

Each stream owns its files. Unauthorized writes are blocked instantly.

category:

10 Error Categories

Not just pass/fail. Every failure is classified, explained, and actionable.

fix_stream

Self-Healing

Failed streams auto-generate fix attempts — up to 3 retries per chain.

learn

orchex learn

Markdown plan in, parallel YAML streams out — automatically.

verify:

Built-In Verification

Every stream can run tests and linters. Failures block the next wave.

Simple. Predictable. Auditable.

orchex sits between your plan and the LLMs — coordinating waves, enforcing ownership, and verifying results.

Your Plan
MCP Client / REST API
Orchex Engine
Waves · Ownership · Verification
Your Code
Verified & Applied

MCP Native

Works with any MCP-compatible client — Claude Code, Cursor, Windsurf.

Model Agnostic

Claude, GPT, Gemini, DeepSeek, Ollama, AWS Bedrock — any LLM, BYOK.

Deterministic

Same plan, same execution order. Fully traceable and auditable.

Start free, scale as you grow

Local MCP tools are always free. Cloud features for teams who need them.

Free

$0
  • 5 streams, 2 waves
  • All 6 providers, BYOK
  • Core MCP tools
  • Local only, BYOK
$ npx @wundam/orchex

Pro

$19/mo
10 free cloud runs · No credit card required
  • 100 cloud runs/mo
  • 15 streams, 10 waves
  • All 6 providers, BYOK
  • orchex learn
  • Full self-healing
Request Beta Access

Team

$49/user/mo
  • 500 cloud runs/mo
  • 25 streams, 25 waves
  • All 6 providers, BYOK
  • learn + self-healing
  • Shared orchestrations
  • Team management
Request Beta Access

Enterprise

Custom
  • Unlimited runs + waves
  • 50+ streams, all providers
  • learn + self-healing
  • SLA guarantee
  • Dedicated support
Contact Sales

All plans include BYOK — bring your own API keys, keep your data. Full comparison →

Running in 30 seconds

No account required for local use.

terminal
# Add to your MCP config (Claude Code, Cursor, etc.)
{
  "mcpServers": {
    "orchex": { "command": "npx", "args": ["@wundam/orchex"] }
  }
}

# That's it. One command to orchestrate:
orchex run "Add user authentication with tests"

# Or use the advanced plan-driven workflow:
orchex learn   → plan.md → parallel streams
orchex execute → run all waves