← Index

MCP Task Orchestrator

io.github.jpicklyk/task-orchestrator·v3.2.0·Other
Quality Score
90
/100

Server-enforced workflow discipline for AI agents: work items, dependency graphs, quality gates

§01  Install
Claude Desktop (Docker)
{
  "mcpServers": {
    "task-orchestrator": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/jpicklyk/task-orchestrator:latest"
      ],
      "env": {
        "DATABASE_PATH": "<database_path>",
        "USE_FLYWAY": "<use_flyway>",
        "AGENT_CONFIG_DIR": "<agent_config_dir>",
        "MCP_TRANSPORT": "<mcp_transport>",
        "MCP_HTTP_PORT": "<mcp_http_port>",
        "LOG_LEVEL": "<log_level>"
      }
    }
  }
}
§02  Environment variables
DATABASE_PATH

SQLite database file path (default: data/current-tasks.db)

USE_FLYWAY

Enable Flyway database migrations (default: true)

AGENT_CONFIG_DIR

Directory containing .taskorchestrator/config.yaml for workflow schemas (default: working dir)

MCP_TRANSPORT

Transport mode: stdio (default) or http

MCP_HTTP_PORT

HTTP port when using http transport (default: 3001)

LOG_LEVEL

Logging level: DEBUG, INFO, WARN, ERROR (default: INFO)

§03  MCP Quality Score  ·  methodology
freshness
25
completeness
15
installability
25
documentation
15
stability
10
§04  Alternatives in Other