Skip to main content
Glama

Task Master

๐ŸŽฏ Simplified Trello-style task management for MCP - Pure MCP functionality with 11 essential tools for efficient CRUD task management, eliminating complex LLM-dependent features.

Version License: MIT TypeScript

Quick Start โ€ข Documentation โ€ข MCP Tools

๐Ÿš€ Quick Start

Prerequisites

  • Node.js 18+

  • An MCP client (Claude Desktop, VSCode with MCP extension, etc.)

Installation

  1. Clone and build

    git clone https://github.com/yourusername/mcp-task-master
    cd mcp-task-master
    npm install && npm run build
  2. Configure MCP client

    Add to your MCP client configuration (e.g., ~/.claude/config.json):

    {
      "mcpServers": {
        "task-master": {
          "command": "node",
          "args": ["/path/to/mcp-task-master/dist/index.js"],
          "env": {
            "DATA_DIR": "/path/to/your/task/data"
          }
        }
      }
    }
  3. Start using

    # List all tasks
    list_tasks --status all
    
    # Create a task (via Dashboard)
    start_dashboard

Related MCP server: MCP Project Manager

โœจ Key Features

  • ๐ŸŽฏ Simplified: Reduced from 19 to 11 essential MCP tools (42% reduction)

  • โšก Pure MCP: No complex LLM dependencies, focusing on true MCP efficiency

  • ๐ŸŒ Bilingual: Korean/English support

  • ๐Ÿ“Š Dashboard: Real-time React-based web interface

  • ๐Ÿ”„ Trello-style: Intuitive CRUD task management

๐Ÿ›  MCP Tools (11 Essential Tools)

๐Ÿ’ผ Core Task Management (7 tools)

  • list_tasks - List all tasks by status with Trello-style emojis

  • execute_task - Simplified task execution guide

  • get_task_detail - View complete task information

  • query_task - Search tasks by keywords or ID

  • update_task - Modify task content and properties

  • delete_task - Remove specific tasks

  • clear_all_tasks - Clear all tasks with backup

๐Ÿ“Š Dashboard Management (4 tools)

  • start_dashboard - Launch React web interface

  • stop_dashboard - Stop dashboard server

  • status_dashboard - Check server status

  • list_dashboard_projects - View registered projects

  • add_dashboard_project - Register new projects

  • create_tasks_in_project - Create project-specific tasks

๐Ÿ“š Documentation

Task Data Model (Simplified)

interface Task {
  id: string;                    // UUID
  name: string;                  // Task name
  description: string;           // Task description
  notes?: string;               // Additional notes
  status: TaskStatus;           // pending | in_progress | completed | blocked
  dependencies: TaskDependency[]; // Task dependencies
  createdAt: Date;              // Creation date
  updatedAt: Date;              // Last modified
  completedAt?: Date;           // Completion date
  summary?: string;             // Completion summary
  relatedFiles?: RelatedFile[]; // Related files
  agent?: string;              // Assigned agent
}

Environment Variables

# Required
DATA_DIR="/path/to/task/data"

# Optional
LANG="ko"                    # Language (ko/en)
ENABLE_GUI="false"          # Enable web dashboard
WEB_PORT="3000"            # Dashboard port

๐ŸŽฎ Usage Examples

Basic Task Management

# List all tasks
list_tasks --status all

# Search tasks
query_task --query "fix bug" --page 1

# Get task details
get_task_detail --taskId "your-task-id"

# Update task
update_task --taskId "your-task-id" --name "New Task Name"

Dashboard Operations

# Start web dashboard
start_dashboard --port 9998

# Check dashboard status
status_dashboard

# Create project tasks
create_tasks_in_project --projectName "MyProject" --tasks '[{"title":"Task 1", "priority":"High"}]'

๐Ÿ— Architecture

src/
โ”œโ”€โ”€ index.ts                 # MCP server entry point (11 tools)
โ”œโ”€โ”€ models/taskModel.ts      # Simplified data models & CRUD
โ”œโ”€โ”€ messages/                # Bilingual message system
โ”‚   โ”œโ”€โ”€ korean.ts           # Korean messages
โ”‚   โ””โ”€โ”€ english.ts          # English messages
โ”œโ”€โ”€ tools/
โ”‚   โ”œโ”€โ”€ task/              # 7 core task tools
โ”‚   โ””โ”€โ”€ dashboard/         # 4 dashboard tools
โ”œโ”€โ”€ types/index.ts          # Simplified type definitions
โ””โ”€โ”€ utils/                  # Common utilities

๐Ÿš€ Performance Improvements

Metric

Before

After

Improvement

MCP Tools

19

11

42% reduction

Code Size

Complex

~49KB removed

Significant

Template Files

140+

Direct messages

Streamlined

Language Support

3 languages

2 languages

Focused

Memory Usage

High

Reduced

LLM system removed

โšก What Was Removed

Complex LLM-dependent features:

  • โŒ plan_task - Complex task planning

  • โŒ analyze_task - Codebase analysis

  • โŒ split_tasks - Task decomposition (large files)

  • โŒ verify_task - Complex quality verification

  • โŒ reflect_task - Task retrospection

  • โŒ process_thought - Thought processing

  • โŒ research_mode - Research mode

  • โŒ init_project_rules - Project rules initialization

Simplified data model:

  • โŒ implementationGuide - Complex implementation guides

  • โŒ verificationCriteria - Quality verification criteria

  • โŒ analysisResult - LLM-based analysis results

  • โŒ Complex template system (140+ files)

๐Ÿค Contributing

  1. Fork the repository

  2. Create your feature branch (git checkout -b feature/amazing-feature)

  3. Commit your changes (git commit -m 'Add some amazing feature')

  4. Push to the branch (git push origin feature/amazing-feature)

  5. Open a Pull Request

๐Ÿ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

๐Ÿ™ Acknowledgments

  • Built for the Model Context Protocol (MCP)

  • Inspired by Trello's simplicity and effectiveness

  • Focused on pure MCP efficiency without LLM complexity


Task Master - Simplified. Efficient. Pure MCP.

โญ Star this repo if you find it useful!

A
license - permissive license
-
quality - not tested
D
maintenance

Maintenance

โ€“Maintainers
โ€“Response time
โ€“Release cycle
โ€“Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • MCP-native open-source Notion alternative: read & write pages, databases and kanban boards.

  • A MCP server built for developers enabling Git based project management with project and personalโ€ฆ

  • Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.

View all MCP Connectors

Latest Blog Posts

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/deokgoo/task-manager-mcp'

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