
task-orchestrator-mcp
An MCP server for task orchestration.
Tools
createTask
Create a new task with optional parent and index positioning. This tool initiates a new workflow for handling user requests. The workflow is as follows: 1. Create tasks with the provided name and optional description. Tasks are organized in a hierarchical structure where subtasks can be created by specifying parentId. 2. Tasks are ordered by their position in the parent's tasks array. Use insertIndex to specify position (defaults to end). 3. After task creation, you MUST call the `startTask` tool to begin processing the task. 4. When the task is completed, call the `completeTask` tool with the task ID and resolution details. 5. If the following task is assigned, execute it by calling the `startTask` tool again. 6. Repeat this cycle until all tasks are completed.
getTask
Get a task by its ID
listTasks
List tasks from hierarchical structure, optionally filtered by parentId. Returns root tasks if no parentId specified, or direct children of specified parent task.
updateTask
Update an existing task
deleteTask
Delete a task by its ID
startTask
Start a task (change status to in_progress) 1. Run this tool to start the task. 2. When the task is complete, call the `completeTask` tool to complete the task.
completeTask
Complete a task and get the next task to execute. To start the next task, execute `startTask`.
README
task-orchestrator-mcp
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:
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"]
}
}
}
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.