MCP Orchestrator Server

by mokafari

25 stars
278 downloads
Not rated
GitHub

About

small MCP server for orchestrating tasks across LLM instances

Details

Author
mokafari
GitHub stars
25
Downloads
278
Categories
Other

- Task creation with dependencies
- Multi-instance coordination
- Persistent task storage
- Dependency enforcement and cycle detection
- Task status tracking and state management
- Safe deletion with dependency checks
- Task updates for pending tasks

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name MCP Orchestrator Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install via Smithery (npx -y @smithery/cli install orchestrator-server --client claude) or manually (npm install then npm run build). Use tools like create_task, get_next_task, and complete_task with the provided API parameters.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "mcp orchestrator server": {
            "orchestrator-server": {
                "command": "npx",
                "args": [
                    "-y",
                    "@smithery/cli",
                    "install",
                    "orchestrator-server",
                    "--client",
                    "claude"
                ]
            }
        }
    }
}

McpServers

{
    "orchestrator-server": {
        "command": "npx",
        "args": [
            "-y",
            "@smithery/cli",
            "install",
            "orchestrator-server",
            "--client",
            "claude"
        ]
    }
}

MCP Orchestrator Server

Version
smithery badge

The MCP Orchestrator Server provides task management and coordination capabilities across MCP enabled LLM instances like Claude Desktop or Cline. In simpler terms it allows for AI agents to create, share and execute tasks across instances

<a href="https://glama.ai/mcp/servers/6hfxiaiuwg">Orchestrator Server MCP server</a>

Features

Version 1.1.0

- Task Updates: Modify pending tasks - Safe Deletion: Delete tasks with dependency checks - Cycle Detection: Prevent dependency cycles - Tool Listing: Comprehensive tool documentation - Enhanced State Management: Improved task state transitions

Core Features

- Task creation with dependencies - Multi-instance coordination - Persistent task storage - Dependency enforcement - Task status tracking

Installation

Installing via Smithery

To install Orchestrator Server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install orchestrator-server --client claude

Manual Installation

npm install
npm run build

Usage

Create a Task

await create_task({
  id: 'setup',
  description: 'Initial setup'
});

Get Next Task

const task = await get_next_task({
  instance_id: 'worker-1'
});

Complete Task

await complete_task({
  task_id: 'setup',
  instance_id: 'worker-1',
  result: 'System initialized'
});

Documentation

- API Reference
- Quick Start Guide
- Changelog

Roadmap

Version 1.2.0

- Task priorities - Timeouts - Instance management

Version 1.3.0

- Task groups - Analytics - Dashboard

License

MIT
No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.