A Kotlin implementation of the Model Context Protocol (MCP) server for comprehensive task management, providing AI assistants with a structured, context-efficient way to interact with project data.
- π Full Documentation - Complete guides and reference
- π Quick Start Guide - Get running in 2 minutes
- π§ API Reference - All 37 MCP tools detailed
- π Workflow Prompts - 5 built-in workflow automations
- π Templates - 9 built-in documentation templates
- ποΈ Database Migrations - Schema change management for developers
- π¬ Community Wiki - Examples, tips, and community guides
- π€ AI-Native: Designed specifically for AI assistant workflows
- π Hierarchical Organization: Projects β Features β Tasks with dependencies
- π― Context-Efficient: Progressive loading and token optimization
- π Template-Driven: 9 built-in templates for consistent documentation
- π Workflow Automation: 5 comprehensive workflow prompts
- π Rich Relationships: Task dependencies with cycle detection
- π Concurrent Access Protection: Built-in sub-agent collision prevention
- β‘ 37 MCP Tools: Complete task orchestration API
# Pull latest release
docker pull ghcr.io/jpicklyk/task-orchestrator:latest
# Or specific version
docker pull ghcr.io/jpicklyk/task-orchestrator:1.0.1
# Or latest build from main branch
docker pull ghcr.io/jpicklyk/task-orchestrator:main
# Build locally
./scripts/docker-clean-and-build.bat # Windows
# Or manually: docker build -t mcp-task-orchestrator:dev .
Add to your claude_desktop_config.json
:
Production Configuration
{
"mcpServers": {
"task-orchestrator": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"--volume", "mcp-task-data:/app/data",
"ghcr.io/jpicklyk/task-orchestrator:latest"
]
}
}
}
Local Development Configuration
{
"mcpServers": {
"task-orchestrator": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"--volume", "mcp-task-data:/app/data",
"mcp-task-orchestrator:dev"
]
}
}
}
Use the JSON configuration command:
# Production version (latest release)
claude mcp add-json task-orchestrator '{"type":"stdio","command":"docker","args":["run","--rm","-i","-v","mcp-task-data:/app/data","ghcr.io/jpicklyk/task-orchestrator:latest"]}'
# Specific version
claude mcp add-json task-orchestrator '{"type":"stdio","command":"docker","args":["run","--rm","-i","-v","mcp-task-data:/app/data","ghcr.io/jpicklyk/task-orchestrator:1.0.1"]}'
# Latest from main branch
claude mcp add-json task-orchestrator '{"type":"stdio","command":"docker","args":["run","--rm","-i","-v","mcp-task-data:/app/data","ghcr.io/jpicklyk/task-orchestrator:main"]}'
# Local development version (after building locally)
claude mcp add-json task-orchestrator '{"type":"stdio","command":"docker","args":["run","--rm","-i","-v","mcp-task-data:/app/data","mcp-task-orchestrator:dev"]}'
# Test the Docker container runs correctly
docker run --rm -i -v mcp-task-data:/app/data ghcr.io/jpicklyk/task-orchestrator:latest
# Test MCP connection (requires Node.js)
node scripts/test-mcp-connection.js
Ask Claude:
- "Create a new project for my web application"
- "Show me the project overview"
- "Apply the technical approach template to this task"
Project (optional)
βββ Feature (optional)
βββ Task (required) ββ Dependencies β Task
βββ Section (optional, detailed content)
- Projects: Top-level organizational containers
- Features: Group related tasks into functional units
- Tasks: Primary work units with status, priority, complexity
- Dependencies: Relationships between tasks (BLOCKS, IS_BLOCKED_BY, RELATES_TO)
- Sections: Rich content blocks for documentation
- Templates: Standardized documentation patterns
- AI Workflow Instructions: Git workflows, PR management, task implementation, bug investigation
- Documentation Properties: Technical approach, requirements, context & background
- Process & Quality: Testing strategy, definition of done
create_feature_workflow
- Comprehensive feature creationtask_breakdown_workflow
- Complex task decompositionbug_triage_workflow
- Systematic bug managementproject_setup_workflow
- Complete project initializationimplement_feature_workflow
- Git-aware feature implementation with completion validation
- 6 Task Management Tools - Core CRUD operations
- 5 Feature Management Tools - Group related work
- 5 Project Management Tools - Top-level organization
- 3 Dependency Management Tools - Model relationships
- 9 Section Management Tools - Rich documentation
- 9 Template Management Tools - Workflow automation
# Build
./gradlew build
# Run
java -jar build/libs/mcp-task-orchestrator-*.jar
# Configure environment for local development
MCP_TRANSPORT=stdio
DATABASE_PATH=data/tasks.db
USE_FLYWAY=true
MCP_DEBUG=true # Enable debug logging
Variable | Description | Default |
---|---|---|
MCP_TRANSPORT |
Transport type | stdio |
DATABASE_PATH |
SQLite database path | data/tasks.db |
USE_FLYWAY |
Enable Flyway database migrations | true |
MCP_SERVER_NAME |
Server name | mcp-task-orchestrator |
MCP_DEBUG |
Enable debug logging | false |
Version follows semantic versioning with git-based build numbers:
- Format:
{major}.{minor}.{patch}.{git-commit-count}-{qualifier}
- Stable releases remove the qualifier (e.g.,
1.0.0.123
) - Pre-releases include qualifier (e.g.,
1.0.0.123-beta-01
)
Current versioning defined in build.gradle.kts.
- π Watch for releases
- π View changelog
# Run tests
./gradlew test
# Test MCP connection
node scripts/test-mcp-connection.js
# Debug mode
MCP_DEBUG=true java -jar build/libs/mcp-task-orchestrator-*.jar
- JSON parsing errors: Enable
MCP_DEBUG=true
and check logs inlogs/
- Docker issues: Ensure Docker Desktop is running and
docker volume inspect mcp-task-data
- Connection problems: Test with the echo tool (see troubleshooting guide)
- π Full troubleshooting guide
- π¬ Community discussions
- π Report issues
- Fork the repository
- Create a feature branch
- Make your changes with tests
- Submit a pull request
See contributing guidelines for details.