J

orchestrator-server

...
Created 12/29/2024bymokafari

Language:

JavaScript

Stars:

15

Forks:

3

MCP Orchestrator Server

Version

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

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

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

Roadmap

Version 1.2.0

  • Task priorities
  • Timeouts
  • Instance management

Version 1.3.0

  • Task groups
  • Analytics
  • Dashboard

License

MIT

Last updated: 2/22/2025

Publisher info

mokafari's avatar

mokafari

1
followers
1
following
6
repos

More MCP servers built with JavaScript

mcp-server-semgrep

MCP Server Semgrep is a [Model Context Protocol](https://modelcontextprotocol.io) compliant server that integrates the powerful Semgrep static analysis tool with AI assistants like Anthropic Claude. It enables advanced code analysis, security vulnerability detection, and code quality improvements directly through a conversational interface.

By Szowesgad9
protonmail-mcp

This MCP server provides email sending functionality using Protonmail's SMTP service. It allows both Claude Desktop and Cline VSCode extension to send emails on your behalf using your Protonmail credentials.

By amotivv6
agentql-mcp

Model Context Protocol server that integrates AgentQL's data extraction capabilities.

By tinyfish-io45