Task Manager MCP
April 5, 2025 · View on GitHub
Overview
Task Manager MCP is a task management service based on the MCP (Model Context Protocol), offering full lifecycle management capabilities for complex task orchestration scenarios.
Key Features:
- Hierarchical task/subtask modeling
- Task Gantt chart
- Task dependency management (TODO)
Documentation
Quick Start
Prerequisites
- Python 3.10+
Installation via uv
-
Install uv package manager:
curl -LsSf https://astral.sh/uv/install.sh | sh -
Clone repository:
git clone https://github.com/your-repo/task-manager-mcp.git cd task-manager-mcp -
Sync dependencies:
uv sync -
Start service:
uv run mcp run main.py
Usage Guide
MCP Service Integration
Register service in MCP configuration:
{
"mcpServers": {
"task-manager": {
"command": "uv",
"args": [
"--directory",
"/path/to/task-manager-mcp",
"run",
"--with",
"mcp",
"mcp",
"run",
"main.py"
],
"disabled": false,
"alwaysAllow": []
}
}
}
Roo Code Extension
The project provides .roomodes configuration with modes:
- TaskDecomposer: Task decomposition & dependency analysis
- TaskPlanner: Task scheduling & execution tracking
Merge the .roomodes configuration into your project to enable these modes.
Development
Project Structure
task-manager-mcp/
├── models/ # Data models
│ ├── __init__.py
│ ├── metadata.py # Metadata schema
│ └── task.py # Task domain model
├── server/ # Server implementation
│ ├── __init__.py
│ ├── mcp.py # MCP protocol adapter
│ └── tools.py # MCP toolchain
├── tests/ # Test suites
│ ├── test_models/ # Model unit tests
│ └── test_server/ # Server integration tests
├── .gitignore
├── LICENSE.md
├── main.py # Service entrypoint
├── pyproject.toml # Project metadata
└── uv.lock # Dependency lockfile
Dependency Management
The uv.lock file ensures deterministic dependency resolution. This file is automatically managed by uv - do not edit manually.
Testing
pytest tests/ -v
Contributing
We welcome contributions through GitHub flow:
- Fork the repository
- Create feature branch (
git checkout -b feat/NewFeature) - Commit atomic changes (
git commit -m 'feat: Implement NewFeature') - Push to the branch (
git push origin feat/NewFeature) - Open a Pull Request
License
Distributed under Apache 2.0 License.
Support
Found an issue or have suggestions? Please:
- Open a GitHub Issue
Maintainers
Task Manager MCP is developed and maintained by @druid0523.