Skip to main content

Prerequisites

Download & run

This pulls pre-built images from GitHub Container Registry and starts three services:
First pull may take a minute. Subsequent starts are instant.

Configuration

Set environment variables by creating a .env file alongside docker-compose.yml:

Key variables

You must set CYRNEL_SECRETS_KEY before storing any service secrets. The shipped default is a block of zero bytes, equivalent to no encryption. Generate a real key:

Full reference

All available variables are documented in the per-service example env files:

Using the MCP Server

The MCP server exposes cyrnel’s tools so your AI agent can discover services, inspect tool schemas, create and run processes, and read results. Each agent below shows two connection methods:
  • HTTP: point the agent at the Docker MCP server (localhost:9373)
  • stdio: run the MCP server as a Docker child process
Open claude_desktop_config.json (Claude → Settings → Developer → Edit Config).HTTP:
For Docker Desktop on macOS/Windows, use host.docker.internal:
stdio:
The MCP server requires the API to be running and reachable. In the Docker setup this is handled automatically, the MCP container connects to the API container over the internal Docker network.
Last modified on July 4, 2026