Agent Workflow Engine β multi-step MCP workflows with per-step directives and validation.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Agent Workflow Engine for AI agents.
Primary users: AI agents via MCP protocol. Web UI is supplementary for workflow management.
See docs/VISION.md for product vision and design principles.
Both run the same engine and MCP tools. Self-host is a single-tenant private-team deployment with administrator-approved accounts. Cloud adds managed hosting and SaaS-only policy and administration, including social login, legal consent, email verification, and the broader multi-user administration surface.
Monorepo: Clean separation of concerns with npm workspaces Workflow Engine: Node-graph execution over a set of node types (@mcp-moira/workflow-engine) MCP Server: HTTP protocol server exposing the MCP tools (@mcp-moira/mcp-server) Web Backend: Express API server (@mcp-moira/web-backend) Web Frontend: React UI with webpack (@mcp-moira/web-frontend) Docs: Astro 5 + Starlight documentation site, EN+RU (@mcp-moira/docs) Shared: Database layer + Better Auth + logging (@mcp-moira/shared) Database: Modular repository pattern with Drizzle ORM Settings System: Universal settings with encryption and dynamic UI generation Docker Deployment: Multi-stage container with TypeScript validation Validation: JSON Schema with AJV
/docsdatabase/ - Modular repositories (Workflow, Execution, Settings)auth/ - Better Auth configurationlogging/ - Structured loggingconfig/) - Unified container deployment configurationRun a complete Moira instance locally with Docker β no source build required:
Then open:
The image is pulled from the public registry by default. Data (SQLite + execution
storage) persists in ./data. See Self-Hosting or the in-app docs
at /docs/ for the full reference.
Update a normal self-host installation with the standard Compose commands:
Older .env files may still override Compose with the removed 0.3.5 tag; change that line once to
MOIRA_IMAGE=ghcr.io/moira-mcp/moira:latest before updating.
The image protects existing self-host data before its startup migrations: it creates and verifies a
coherent SQLite backup, includes the prompt manifest, and keeps three rotating recovery states under
data/.moira-startup-backups/. If initialization fails, it restores the database and manifest before
refusing to start the services. A persistent pending marker also restores the verified state before the
next attempt if the container or host was interrupted mid-initialization. A fresh installation skips
the nonexistent-database backup and uses only a temporary persistent marker so an interrupted first
start is removed before retry.
The complete automatic recovery behavior and optional pinned-image preflight are documented in Self-hosting: Updating and Recovery, with a matching Russian version. Release notes are on the GitHub Releases page.
For contributors who want to build and run from the source tree, switch
docker-compose.yml to Option B first β comment out the image: line and
uncomment the build: block (the file documents both options inline). Then:
(The default docker-compose.yml uses the prebuilt public image β docker compose up -d without --build β which is the recommended self-host path.)
Custom node and communication-channel bundles run in the separate extension runner and are disabled by default. Enabling them requires this source checkout because the runner image is built locally; the published Moira image does not import or package bundle code.
Before starting the example, replace both placeholder network permissions and fill its per-user
settings. The example contributes both a workflow action node and an ordinary notification channel.
See Self-hosting: Enable
extensions
and Writing an
Extension for the complete
installation, SDK, permission and failure contracts. npm run test:docker-extensions verifies the
default-off profile and read-only bundle mount.
The integration/API/E2E suites run against a local Docker container, configured by
.env.local. Copy the template once before running them (or before
npm run docker:restart):
Configuration in .env (copy from .env.example):
./data/moira.db (bind-mounted, persists across restarts)MCP Moira uses Better Auth with OAuth 2.1 for centralized authentication.
Browser Access:
MCP Clients:
Protected:
Testing:
See docs/AUTHENTICATION.md for complete setup and OAuth flow details.
Point your MCP client (e.g. Claude Code) at your running instance:
| Server | URL | Purpose |
|---|---|---|
moira-local | http://localhost:8080/mcp | Your local self-host instance |
Replace
localhost:8080with your own host/port (MOIRA_HOST) if you serve Moira on a different address.
The examples below show common graph patterns; they are not the complete node-type inventory. See the Nodes reference for every supported type and its current contract, including automatic note operations and file materialization.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/moira)<a href="https://allmcps.com/mcp/moira"><img src="https://allmcps.com/api/badge/moira?style=directory" alt="Moira on AllMCPs" /></a>