TaskFlow▌
by pinkpixel-dev
TaskFlow manages tasks with project plan templates, subtasks, dependencies, and approval for systematic tracking and use
Task management system that breaks down user requests into structured tasks with subtasks, dependencies, and notes, requiring explicit approval before proceeding to ensure systematic tracking and user control.
Both formats append explainx.ai attribution and the canonical URL for this MCP server listing.
best for
- / Project managers organizing complex workflows
- / AI assistants that need structured task execution
- / Teams requiring approval-based task management
- / Users who want detailed progress tracking
capabilities
- / Break down complex requests into manageable tasks
- / Create subtasks and track dependencies
- / Monitor progress with visual status tables
- / Export task plans in Markdown, JSON, or HTML
- / Save tasks persistently across sessions
- / Add project-level notes and documentation
what it does
Converts user requests into structured tasks with subtasks, dependencies, and progress tracking. Requires explicit approval at each step to maintain control over task execution.
about
TaskFlow is a community-built MCP server published by pinkpixel-dev that provides AI assistants with tools and capabilities via the Model Context Protocol. TaskFlow manages tasks with project plan templates, subtasks, dependencies, and approval for systematic tracking and use It is categorized under productivity.
how to install
You can install TaskFlow in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
license
MIT
TaskFlow is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
readme
TaskFlow MCP 🔄✅
<p align="center"> <img src="taskflow.png" alt="TaskFlow MCP"> </p>
A task management Model Context Protocol (MCP) server for planning and executing tasks with AI assistants.
<a href="https://glama.ai/mcp/servers/@pinkpixel-dev/taskflow-mcp"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@pinkpixel-dev/taskflow-mcp/badge" alt="TaskFlow MCP server" /> </a>🌟 Overview
TaskFlow MCP is a specialized server that helps AI assistants break down user requests into manageable tasks and track their completion. It enforces a structured workflow with user approval steps to ensure tasks are properly tracked and users maintain control over the process.
✨ Features
- 📋 Task Planning: Break down complex requests into manageable tasks
- 🔍 Subtasks: Divide tasks into smaller, more manageable subtasks
- 📊 Progress Tracking: Track the status of tasks, subtasks, and requests with visual progress tables
- 👍 User Approval: Enforce user approval steps to ensure quality and control
- 💾 Persistence: Save tasks and requests to disk for persistence across sessions
- 🔄 Flexible Management: Add, update, or delete tasks and subtasks as needed
- 📝 Detailed Reporting: View task details and progress tables
- 📤 Export Options: Export task plans and status reports in Markdown, JSON, or HTML formats
- 📦 Dependencies: Track project and task-level dependencies with version information
- 📌 Notes: Add project-level notes for important information and preferences
- 📄 YAML Support: Save tasks in YAML format for better handling of multiline content
- 🛡️ Robust Text Handling: Comprehensive newline sanitization for reliable data persistence
- 🎯 Prompts System: Global instructions and task prefix/suffix for consistent LLM guidance
- 📚 Task Archiving: Archive completed requests to keep active task lists clean
- 🗂️ Archive Management: Browse, search, and restore archived tasks with full history
- 📍 Relative Path Support: Use relative paths for flexible project-based workflows
🚀 Installation
Global Installation
npm install -g @pinkpixel/taskflow-mcp
Local Installation
npm install @pinkpixel/taskflow-mcp
🛠️ Usage
Starting the Server
If installed globally:
taskflow-mcp
If installed locally:
npx taskflow-mcp
Configuration
By default, TaskFlow MCP saves tasks to tasks.yaml in the current working directory. You can customize this by setting the TASK_MANAGER_FILE_PATH environment variable:
File Path Options
Absolute paths (recommended for production):
TASK_MANAGER_FILE_PATH=/home/user/projects/my-tasks.yaml taskflow-mcp
# Windows
TASK_MANAGER_FILE_PATH=C:\Users\username\Documents asks.yaml taskflow-mcp
Relative paths (great for project-based workflows):
# Resolves to ./project-tasks.yaml in the current directory
TASK_MANAGER_FILE_PATH=project-tasks.yaml taskflow-mcp
# Resolves to ./tasks/current.yaml relative to working directory
TASK_MANAGER_FILE_PATH=tasks/current.yaml taskflow-mcp
Advanced: Custom base directory
# Use a different base directory for relative path resolution
TASK_MANAGER_BASE_DIR=/home/user/workspace TASK_MANAGER_FILE_PATH=tasks.yaml taskflow-mcp
Cross-Platform Compatibility
TaskFlow MCP automatically handles path resolution across Windows and Linux:
- Uses Node.js
path.resolve()andpath.normalize()for consistent behavior - Supports both forward slashes (
/) and backslashes (\) on Windows - Automatically creates parent directories when saving tasks
- Provides clear error messages for path resolution issues
YAML Format Support
TaskFlow MCP supports both JSON and YAML formats for data persistence. To use YAML format, simply configure your file path with a .yaml or .yml extension:
TASK_MANAGER_FILE_PATH=/path/to/tasks.yaml taskflow-mcp
YAML format is particularly useful for:
- Better preservation of multiline descriptions and text content
- More human-readable task data files
- Easier manual editing if needed
The format is automatically detected based on the file extension, and the system maintains full backward compatibility with existing JSON files.
Archive System
TaskFlow MCP v1.4.1 includes a comprehensive archive system to keep your active task lists clean while preserving completed work history:
# Configure archive file path (optional - defaults to [taskfile-name]-archive.[ext])
ARCHIVE_FILE_PATH=/path/to/tasks-archive.yaml taskflow-mcp
# Set archive mode (optional - defaults to 'manual')
ARCHIVE_MODE=manual taskflow-mcp # or 'auto-on-complete'
Archive features include:
- Manual archiving: Use
archive_completed_requeststool to archive when ready - Automatic archiving: Set
ARCHIVE_MODE=auto-on-completefor automatic archiving - Archive browsing: Search and filter archived requests with
list_archived_requests - Archive restoration: Restore archived requests back to active status with
restore_archived_request - Full history preservation: Complete task history, timestamps, and metadata preserved
MCP Configuration
To use TaskFlow MCP with AI assistants, you need to configure your MCP client to use the server. Create an mcp_config.json file with the following content:
Basic Configuration:
{
"mcpServers": {
"taskflow": {
"command": "npx",
"args": ["-y", "@pinkpixel/taskflow-mcp"],
"env": {
"TASK_MANAGER_FILE_PATH": "/path/to/tasks.yaml"
}
}
}
}
Advanced Configuration (with all v1.4.1 options):
{
"mcpServers": {
"taskflow": {
"command": "npx",
"args": ["-y", "@pinkpixel/taskflow-mcp"],
"env": {
"TASK_MANAGER_FILE_PATH": "./project-tasks.yaml",
"TASK_MANAGER_BASE_DIR": "/path/to/project/root",
"ARCHIVE_FILE_PATH": "./tasks-archive.yaml",
"ARCHIVE_MODE": "manual"
}
}
}
}
Configuration Options:
TASK_MANAGER_FILE_PATH: Path to tasks file (supports .json/.yaml, absolute/relative paths)TASK_MANAGER_BASE_DIR: Custom base directory for relative path resolutionARCHIVE_FILE_PATH: Path to archive file (optional, auto-generated if not specified)ARCHIVE_MODE: Archive mode - "manual" (default) or "auto-on-complete"
💡 Tip: See examples/mcp_config_comprehensive.json for a complete configuration example with detailed comments and usage examples.
🔄 Workflow
TaskFlow MCP enforces a specific workflow:
- Plan Tasks: Break down a user request into tasks (with optional subtasks)
- Get Next Task: Retrieve the next pending task
- Complete Subtasks: If the task has subtasks, complete each subtask before marking the task as done
- Mark Task Done: Mark a task as completed (requires all subtasks to be completed first)
- Wait for User Confirmation: Ask the user to confirm the completed task before proceeding
- Repeat: Continue with the next task until all tasks are complete
- Final Confirmation: Confirm with the user that the entire request has been completed
For AI assistants to consistently follow this workflow, see the example-system-prompt.md file for system prompts you can add to your assistant's instructions.
🧰 Available Tools
TaskFlow MCP exposes the following tools to AI assistants:
plan_task
Register a new user request and plan its associated tasks (with optional subtasks).
{
"originalRequest": "Create a new website for my business",
"outputPath": "C:/Users/username/Documents/website-project-plan.md",
"dependencies": [
{
"name": "Node.js",
"version": ">=14.0.0",
"description": "JavaScript runtime"
},
{
"name": "npm",
"version": ">=6.0.0",
"description": "Package manager"
}
],
"notes": [
{
"title": "Package Manager Preference",
"content": "User prefers pnpm over npm for package management."
},
{
"title": "Design Guidelines",
"content": "Follow the company's brand guidelines for colors and typography."
}
],
"tasks": [
{
"title": "Design homepage",
"description": "Create a design for the homepage with logo, navigation, and hero section",
"dependencies": [
{
"name": "Figma",
"description": "Design tool"
}
],
"subtasks": [
{
"title": "Design logo",
"description": "Create a logo that represents the business brand"
},
{
"title": "Design navigation",
"description": "Create a user-friendly navigation menu"
}
]
},
{
"title": "Implement HTML/CSS",
"description": "Convert the design to HTML and CSS",
"dependencies": [
{
"name": "HTML5",
"description": "Markup language"
},
{
"name": "CSS3",
"description": "Styling language"
}
]
}
]
}
get_next_task
Retrieve the next pending task for a request.
{
"requestId": "req-1"
}
mark_task_done
Mark a task as completed.
{
"requestId": "req-1",
"taskId": "task-1",
"completedDetails": "Created a modern design with a clean layout"
}
open_task_details
Get details about a specific task.
{
"taskId": "task-1"
}
list_requests
List all requests in the system.
{}
add_tasks_to_request
Add more tasks to an existing request.
{
"req
---
FAQ
- What is the TaskFlow MCP server?
- TaskFlow is a Model Context Protocol (MCP) server profile on explainx.ai. MCP lets AI hosts (e.g. Claude Desktop, Cursor) call tools and resources through a standard interface; this page summarizes categories, install hints, and community ratings.
- How do MCP servers relate to agent skills?
- Skills are reusable instruction packages (often SKILL.md); MCP servers expose live capabilities. Teams frequently combine both—skills for workflows, MCP for APIs and data. See explainx.ai/skills and explainx.ai/mcp-servers for parallel directories.
- How are reviews shown for TaskFlow?
- This profile displays 44 aggregated ratings (sample rows for discoverability plus signed-in user reviews). Average score is about 4.6 out of 5—verify behavior in your own environment before production use.
Use Cases▌
Extended AI Capabilities
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Context Enhancement
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Workflow Automation
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Implementation Guide▌
Prerequisites
- ›Claude Desktop 0.7.0+ or Cursor IDE with MCP support
- ›Basic understanding of MCP architecture and capabilities
- ›Access credentials for integrated services (if required)
- ›Willingness to experiment and iterate on configuration
Time Estimate
15-60 minutes depending on server complexity
Installation Steps
- 1.Install MCP server: npm install -g [package-name] or via GitHub
- 2.Add server configuration to ~/.claude/mcp.json
- 3.Provide required credentials and configuration
- 4.Restart Claude Desktop to load new server
- 5.Test basic functionality with simple prompts
- 6.Explore capabilities and experiment with use cases
- 7.Document successful patterns for reuse
Troubleshooting
- ⚠MCP server not loading: Check config syntax, verify installation
- ⚠Connection errors: Check network, firewall, credentials
- ⚠Feature not working: Read server docs, check required parameters
- ⚠Performance issues: Monitor resource usage, check for network latency
- ⚠Conflicts with other servers: Check port assignments, namespace collisions
Best Practices▌
✓ Do
- +Read server documentation thoroughly before setup
- +Start with simple use cases to validate functionality
- +Test in non-production environment first
- +Monitor resource usage and performance
- +Keep servers updated for bug fixes and new features
- +Document configuration for team members
- +Use environment variables for sensitive configuration
✗ Don't
- −Don't grant overly permissive access to MCP servers
- −Don't skip reading security considerations in docs
- −Don't expose sensitive data without proper controls
- −Don't run untrusted MCP servers without code review
- −Don't ignore error messages—investigate root cause
💡 Pro Tips
- ★Combine multiple MCP servers for powerful workflows
- ★Create custom MCP servers for your specific needs
- ★Share successful configurations with team
- ★Use MCP inspector for debugging
- ★Join MCP community for tips and troubleshooting
Technical Details▌
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
- Model Context Protocol (MCP)
- JSON-RPC 2.0
- stdio or HTTP transport
Compatibility
- Claude Desktop
- Cursor IDE
- Custom MCP clients
When to Use This▌
✓ Use When
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid When
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.
Integration▌
- →Tool composition: Chain multiple MCP tools in workflows
- →Context augmentation: Provide AI with relevant external data
- →Action delegation: Let AI execute tasks on external systems
- →Bidirectional sync: Keep AI context and external systems in sync
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
List & Promote Your MCP Server
Share your MCP server with the developer community
Ratings
4.6★★★★★44 reviews- ★★★★★Isabella Kapoor· Dec 16, 2024
TaskFlow is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
- ★★★★★Anaya Smith· Dec 4, 2024
TaskFlow reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
- ★★★★★Arya Torres· Nov 23, 2024
I recommend TaskFlow for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
- ★★★★★Zaid Srinivasan· Nov 19, 2024
We wired TaskFlow into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
- ★★★★★Omar Reddy· Nov 7, 2024
According to our notes, TaskFlow benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
- ★★★★★Zaid Tandon· Oct 22, 2024
TaskFlow has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
- ★★★★★Arya Gonzalez· Oct 14, 2024
Strong directory entry: TaskFlow surfaces stars and publisher context so we could sanity-check maintenance before adopting.
- ★★★★★Omar Sethi· Oct 10, 2024
TaskFlow is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
- ★★★★★Piyush G· Sep 25, 2024
TaskFlow is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
- ★★★★★William Mensah· Sep 21, 2024
TaskFlow has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
showing 1-10 of 44