The MCP TaskManager server enables Claude Desktop to manage and execute tasks in a queue-based system. Developed by kazuph, it provides a structured approach to task management with two main phases: planning (accepting task lists and storing them as a queue) and execution (retrieving, completing, and tracking tasks). The implementation uses Cloudflare Workers with KV storage for persistence and offers tools for creating task plans, tracking progress with visual tables, approving completions, and managing task lifecycles. This server is particularly useful for breaking down complex requests into manageable steps, maintaining context across conversations, and ensuring methodical completion of multi-step workflows.
No reviews yet. Be the first to review!
Sign in to join the conversation
Accepts a task list (array of strings) from the user, stores tasks internally as a queue, and returns an execution plan including task overview, task ID, and current queue status. Requires parameter: tasks (array of task strings).
Returns the next task from the queue when requested and prepares the next task for execution. Requires parameter: getNext (Boolean flag to request next task).
Completes a task identified by taskId and removes it from the queue. Requires parameter: taskId (Task identifier).