t

task-orchestrator-mcp

@108yen/task-orchestrator-mcp
0 Stars 183 次浏览 108yen 更新于 2026-08-23

MCP 服务配置

复制以下 JSON 到 OPClaw 或其他 MCP 客户端的配置文件中即可使用

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

服务介绍

task-orchestrator-mcp

NPM Version
codecov
MIT License

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 Name Description
createTask Create a new task
getTasks Retrieve all tasks
getTask Retrieve a task by specified ID
updateTask Update a task by specified ID
deleteTask Delete a task by specified ID
startTask Start a task (change status to 'in_progress')
completeTask Complete 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:

Install with NPX in VS Code

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"]
    }
  }
}

相关 MCP 服务