JUHE API Marketplace
108yen avatar
MCP Server

task-orchestrator-mcp

An MCP server for task orchestration.

2
GitHub Stars
8/23/2025
Last Updated
MCP Server Configuration
1{
2 "name": "task-orchestrator-mcp",
3 "command": "npx",
4 "args": [
5 "-y",
6 "task-orchestrator-mcp"
7 ],
8 "env": {
9 "FILE_PATH": "path/to/json_file.json"
10 }
11}
JSON11 lines

README Documentation

task-orchestrator-mcp

codecov

task-orchestrator-mcp is an MCP (Model Context Protocol) server that provides a set of tools for managing tasks. It enables agents to perform CRUD operations on tasks and manage their progress.

Features

The main tools provided by task-orchestrator-mcp are as follows:

Tool NameDescription
createTaskCreate a new task
getTasksRetrieve all tasks
getTaskRetrieve a task by specified ID
updateTaskUpdate a task by specified ID
deleteTaskDelete a task by specified ID
startTaskStart a task (change status to 'in_progress')
completeTaskComplete a task and find the next task to execute

Usage

FILE_PATH is optional.

{
  "mcpServers": {
    "task-orchestrator-mcp": {
      "command": "npx",
      "args": ["-y", "task-orchestrator-mcp"],
      "env": {
        "FILE_PATH": "path/to/json_file.json"
      }
    }
  }
}

VS Code Installation Instructions

For quick installation, use one of the one-click installation buttons below:

For manual installation, add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing Ctrl + Shift + P and typing Preferences: Open Settings (JSON).

Optionally, you can add it to a file called .vscode/mcp.json in your workspace. This will allow you to share the configuration with others.

{
  "servers": {
    "task-orchestrator-mcp": {
      "command": "npx",
      "args": ["-y", "task-orchestrator-mcp"]
    }
  }
}

Quick Install

Quick Actions

Key Features

Model Context Protocol
Secure Communication
Real-time Updates
Open Source