by pinkpixel-dev
TaskFlow manages tasks with project plan templates, subtasks, dependencies, and approval for systematic tracking and use
Converts user requests into structured tasks with subtasks, dependencies, and progress tracking. Requires explicit approval at each step to maintain control over task execution.
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.
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.
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.
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
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
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
Share your MCP server with the developer community
TaskFlow is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
TaskFlow reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
I recommend TaskFlow for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
We wired TaskFlow into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
According to our notes, TaskFlow benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
TaskFlow has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Strong directory entry: TaskFlow surfaces stars and publisher context so we could sanity-check maintenance before adopting.
TaskFlow is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
TaskFlow is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
TaskFlow has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
showing 1-10 of 44
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>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.
npm install -g @pinkpixel/taskflow-mcp
npm install @pinkpixel/taskflow-mcp
If installed globally:
taskflow-mcp
If installed locally:
npx taskflow-mcp
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:
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
TaskFlow MCP automatically handles path resolution across Windows and Linux:
path.resolve() and path.normalize() for consistent behavior/) and backslashes (\) on WindowsTaskFlow 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:
The format is automatically detected based on the file extension, and the system maintains full backward compatibility with existing JSON files.
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:
archive_completed_requests tool to archive when readyARCHIVE_MODE=auto-on-complete for automatic archivinglist_archived_requestsrestore_archived_requestTo 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.
TaskFlow MCP enforces a specific workflow:
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.
TaskFlow MCP exposes the following tools to AI assistants:
plan_taskRegister 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_taskRetrieve the next pending task for a request.
{
"requestId": "req-1"
}
mark_task_doneMark a task as completed.
{
"requestId": "req-1",
"taskId": "task-1",
"completedDetails": "Created a modern design with a clean layout"
}
open_task_detailsGet details about a specific task.
{
"taskId": "task-1"
}
list_requestsList all requests in the system.
{}
add_tasks_to_requestAdd more tasks to an existing request.
{
"req
---
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ 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.