Allows running the task manager in a containerized environment, providing consistent task management capabilities across different systems.
Enables installation and execution of the task manager via NPM packages, with support for registering and managing complex multi-step tasks.
Supports installation and running from source using pnpm package manager for managing task workflows.
Task Manager MCP Server
This MCP server allows agents to manage tasks, including registering tasks, assessing their complexity, breaking down into subtasks, and updating their status. It provides structured task management capabilities for agents working on complex multi-step problems.
Tools
register_task
- A tool to register a new task that must be performed
- Inputs:
taskId
(string): The unique identifier for this tasktitle
(string): A concise title for this taskdescription
(string): A detailed description of this taskgoal
(string): The overall goal of this taskparentTaskId
(string, optional): The identifier of the parent task this task belongs to, if applicable. Must be provided if this task is a subtask of another taskdependsOnCompletedTaskIds
(array of strings, optional): A list of task identifiers this task depends on. Must be provided if this task can't be started before all of the dependent tasks are complete
- Returns: Task registration confirmation with task ID, current status ("not-started"), parent task ID, dependencies, and assessment requirement
assess_task
- A tool to assess the complexity and structure of a task (can only be assessed if it hasn't been started yet)
- Inputs:
taskId
(string): The unique identifier for this taskparentTaskId
(string, optional): The identifier of the parent task this task belongs to, if applicablecurrentStatus
(enum): The current status of the task (must be "not-started")complexityAssessment
(string): A detailed assessment of this task's complexity, describing if it can be performed all at once or requires multiple discrete subtaskscomplexityAssessmentOutcomeSubtasks
(array of objects, optional): A list of discrete subtasks that must be performed to complete this task, each containing:taskId
(string): A unique identifier for this subtasktitle
(string): A concise title for this subtaskdescription
(string): A detailed description of this subtaskgoal
(string): The overall goal of this subtaskmissingKnowledge
(array of objects, optional): A list of specific knowledge or information that is missing and must be researched, each containing:knowledgeId
(string): The unique identifier for this knowledgetitle
(string): A concise title for this knowledgedescription
(string): A detailed description of this knowledge
- Returns: Assessment confirmation with assessment ID, task ID, parent task ID, and list of tasks that need registration (including knowledge acquisition tasks)
task_status
- A tool to update the status of a task (must be used when beginning and completing tasks)
- Inputs:
taskId
(string): The unique identifier of this taskassessmentId
(string): The unique identifier of the complexity and structure assessment for this task (must be acquired using 'assess_task' before starting)currentStatus
(enum): The current status - "not-started", "in-progress", or "complete"parentTask
(object, optional): Details about the parent task, containing:taskId
(string): The unique identifier of the parent taskcurrentStatus
(enum): The current status of the parent task
dependsOnTasks
(array of objects, optional): A list of tasks this task depends on, each containing:taskId
(string): The unique identifier of the dependent taskcurrentStatus
(enum): The current status of the dependent task
outcomeDetails
(string, optional): Details about the outcome of this task (required if status is complete)recommendedNextTaskId
(string, optional): The identifier of the next recommended task to perform after this one (only allowed if status is complete)
- Returns: Status update confirmation with current task state including all provided parameters
Usage with Claude Desktop (uses stdio Transport)
Add to your claude_desktop_config.json
:
Usage with VS Code
For quick installation, use of of the one-click install 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 User 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.
Note that the
mcp
key is not needed in the.vscode/mcp.json
file.
NPX
Running from source with HTTP+SSE Transport (deprecated as of 2025-03-26)
Run from source with Streamable HTTP Transport
Running as an installed package
Install
Run the default (stdio) server
Or specify stdio explicitly
Run the SSE server
Run the streamable HTTP server
License
This package is licensed under the MIT license.
hybrid server
The server is able to function both locally and remotely, depending on the configuration or use case.
This MCP server enables agents to manage complex tasks by providing tools for registration, complexity assessment, breakdown into subtasks, and status tracking throughout the task lifecycle.
- Tools
- Usage with Claude Desktop (uses stdio Transport)
- Usage with VS Code
- Running from source with HTTP+SSE Transport (deprecated as of 2025-03-26)
- Run from source with Streamable HTTP Transport
- Running as an installed package
- License
Related Resources
Related MCP Servers
- -securityAlicense-qualityAn MCP server that converts Cursor agent plans into structured markdown task lists and organizes them in your repository, helping you track AI-generated plans and recommendations as actionable specifications.Last updated -10PythonMIT License
- -securityFlicense-qualityThis MCP server provides tools to interact with the Salesforce Agentforce API, allowing authentication, session creation, and message exchange with Salesforce agents.Last updated -10Python
- -securityAlicense-qualityAn enhanced MCP server that provides intelligent memory and task management for AI assistants, featuring semantic search, automatic task extraction, and knowledge graphs to help manage development workflows.Last updated -9PythonMIT License
- -securityAlicense-qualityAn MCP server that lets agents and humans monitor and control long-running processes, reducing copy-pasting between AI tools and enabling multiple agents to interact with the same process outputs.Last updated -4PythonMIT License