Skip to main content
Glama

Task Manager MCP Server

by blizzy78

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

  1. register_task
    • A tool to register a new task that must be performed
    • Inputs:
      • taskId (string): The unique identifier for this task
      • title (string): A concise title for this task
      • description (string): A detailed description of this task
      • goal (string): The overall goal of this task
      • parentTaskId (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 task
      • dependsOnCompletedTaskIds (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
  2. 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 task
      • parentTaskId (string, optional): The identifier of the parent task this task belongs to, if applicable
      • currentStatus (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 subtasks
      • complexityAssessmentOutcomeSubtasks (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 subtask
        • title (string): A concise title for this subtask
        • description (string): A detailed description of this subtask
        • goal (string): The overall goal of this subtask
        • missingKnowledge (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 knowledge
          • title (string): A concise title for this knowledge
          • description (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)
  3. 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 task
      • assessmentId (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 task
        • currentStatus (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 task
        • currentStatus (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:

{ "mcpServers": { "task-manager": { "command": "npx", "args": [ "-y", "@blizzy/mcp-task-manager" ] } } }

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
{ "mcp": { "servers": { "task-manager": { "command": "npx", "args": ["-y", "@blizzy/mcp-task-manager"] } } } }

Running from source with HTTP+SSE Transport (deprecated as of 2025-03-26)

pnpm install pnpm run start:sse

Run from source with Streamable HTTP Transport

pnpm install pnpm run start:streamableHttp

Running as an installed package

Install

npm install -g @blizzy/mcp-task-manager@latest

Run the default (stdio) server

npx @blizzy/mcp-task-manager

Or specify stdio explicitly

npx @blizzy/mcp-task-manager stdio

Run the SSE server

npx @blizzy/mcp-task-manager sse

Run the streamable HTTP server

npx @blizzy/mcp-task-manager streamableHttp

License

This package is licensed under the MIT license.

Install Server
A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

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.

  1. Tools
    1. Usage with Claude Desktop (uses stdio Transport)
      1. Usage with VS Code
        1. NPX
      2. Running from source with HTTP+SSE Transport (deprecated as of 2025-03-26)
        1. Run from source with Streamable HTTP Transport
          1. Running as an installed package
            1. Install
            2. Run the default (stdio) server
            3. Or specify stdio explicitly
            4. Run the SSE server
            5. Run the streamable HTTP server
          2. License

            Related MCP Servers

            • -
              security
              A
              license
              -
              quality
              An 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 -
              10
              Python
              MIT License
              • Linux
              • Apple
            • -
              security
              F
              license
              -
              quality
              This MCP server provides tools to interact with the Salesforce Agentforce API, allowing authentication, session creation, and message exchange with Salesforce agents.
              Last updated -
              10
              Python
            • -
              security
              A
              license
              -
              quality
              An 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 -
              9
              Python
              MIT License
              • Apple
              • Linux
            • -
              security
              A
              license
              -
              quality
              An 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 -
              4
              Python
              MIT License

            View all related MCP servers

            MCP directory API

            We provide all the information about MCP servers via our MCP API.

            curl -X GET 'https://glama.ai/api/mcp/v1/servers/blizzy78/mcp-task-manager'

            If you have feedback or need assistance with the MCP directory API, please join our Discord server