IntelliPlan is an AI-powered planning assistant for software development projects that offers:
- Hierarchical Work Management: Create and organize Epics, Tasks, and Subtasks with clear parent-child relationships and dependencies
- AI-Assisted Planning: Automatically break down complex tasks into manageable subtasks and receive actionable recommendations
- Progress Tracking: Monitor task status with detailed overviews, progress charts, and dependency graphs
- Batch Operations: Create complete Epic structures with multiple tasks in a single operation
- Interactive Planning: Develop detailed implementation plans through customizable steps
- Storage & Collaboration: Configure local or remote storage for multi-device access and collaboration
- Customization: Tailor planning processes with custom JSON configurations
- Implementation Support: Receive execution guidance for completing tasks
- Deployment Options: Run using Docker or connect to a remote server
Generates various diagram types (including progress pie charts, dependency graphs, task flows, timelines, and more) to visualize epic structures, task dependencies, and project progress.
Creates UML-style class diagrams showing epic structure relationships as part of the diagram visualization options.
✨ IntelliPlan MCP
🚀 Transform Your Development Workflow
IntelliPlan is an intelligent task management system that seamlessly integrates with the Model Context Protocol (MCP) in Cursor AI and other compatible editors. It empowers you to organize your development process with a structured Epic → Task → Subtask hierarchy, all without leaving your coding environment.
✅ What Can IntelliPlan Do For You?
Organize Complex Projects with Ease
- Epic Creation & Management - Break down complex projects into manageable high-level goals
- Task & Subtask Organization - Structure your work with clear parent-child relationships
- Smart Dependencies - Define and track relationships between work items
Supercharge Development Planning
- AI-Assisted Breakdown - Automatically split complex tasks into manageable pieces
- Smart Implementation Suggestions - Get guidance on how to approach challenges
- Complexity Analysis - Understand the effort required before diving in
Keep Your Team on Track
- Progress Tracking - Monitor completion status across all levels
- Next Action Recommendations - Always know what to work on next
- Contextual Understanding - Get summaries that capture the full scope of work
Seamless Editor Integration
- Natural Language Interface - Interact with IntelliPlan using conversational commands
- Stay in Your Workflow - No need to switch context between tools
- MCP Protocol Support - Works with any editor that implements the Model Context Protocol
📋 Available Tools
IntelliPlan provides a suite of powerful tools to manage your development process:
Tool | Description |
---|---|
batchEpic | Creates a complete Epic with multiple tasks, each potentially having multiple subtasks, in a single operation. |
createEpic | Creates a new Epic (top-level task) with planning details and optional initial Task creation. |
createPlanningConfig | Creates a JSON configuration file for the planEpic tool, allowing customization of planning steps and process. |
executeItem | Executes or provides guidance for executing an Epic or Task. |
expandTask | Breaks down a task or epic into smaller, actionable sub-items. |
getEpicOverview | Provides a detailed, easy-to-read overview of an Epic, its tasks, and related information. |
listEpics | Lists all available epics with their IDs, descriptions, statuses, and completion statistics. Supports filtering and sorting. |
manageItems | Manages Epics, Tasks, and Subtasks with various operations (create, update, delete, etc.). |
manageTaskStorage | Manages the storage configuration and exports for Epics and Tasks. |
planEpic | Interactively creates a detailed implementation plan with hierarchical tasks and subtasks through sequential thinking, guiding the agent through multiple steps of refinement. |
🎮 Usage Examples
Available Diagrams 🚧
Note: The diagram functionality is currently a Work In Progress (WIP) 🚧
The getEpicOverview
tool supports various Mermaid diagram types to visualize your epic's structure and progress:
Diagram Type | Description |
---|---|
progressPie | Circle chart showing completed vs remaining tasks |
dependencyGraph | Network diagram of epic and task dependencies |
taskFlow | Flow diagram organizing tasks by status with dependencies |
timeline | Gantt chart showing task timeline and durations |
userJourney | Progressive journey through task completion states |
blockDiagram | Block diagram showing epic structure and task counts |
radarChart | Bar chart showing task distribution by status |
kanbanBoard | Kanban-style board visualization of task status |
sequenceDiagram | Sequence diagram showing task interactions over time |
classDiagram | UML-style class diagram showing epic structure relationships |
You can specify which diagrams to include using the diagramTypes
parameter array. If not specified, all diagram types will be included when includeDiagrams
is set to true
.
🐳 Docker Deployment
IntelliPlan can be deployed using Docker for easy setup and management. The Docker deployment supports both local and remote storage modes.
Building the Docker Image
Running with Docker
Storage Configuration Options
IntelliPlan supports two storage modes when running in Docker:
1. Remote Mode (Default)
In remote mode, files are stored in a persistent volume mounted to the /data
directory in the container:
This is the recommended configuration for Docker deployments. All data will be stored in the .intelliplan-data
directory on the host machine.
2. Local Mode
If you prefer to use local storage mode, you can override the environment variables:
Docker Compose Example
For easier management, you can use Docker Compose:
Save this as docker-compose.yml
and run with:
🔄 Remote Server Mode
IntelliPlan now supports a remote server mode, allowing you to store your epics and tasks on a centralized server instead of directly on your local filesystem. This enables team collaboration and access to your planning data from multiple devices.
📡 Setting Up the Remote Server
- Start the API Server:
- Environment Variables for the API Server:
PORT
: Port to run the server on (default: 3000)STORAGE_PATH
: Location where the API server will store data (default: current directory)
🔌 Connecting to a Remote Server
- Simple Configuration:At minimum, you only need to set:This will connect to a server running on http://localhost:4007 by default.
- Advanced Configuration (optional):
- Start IntelliPlan in remote mode:
- Configure in Cursor: Add to your
.cursor-settings.json
:
🛡️ Security Considerations
- The API server includes basic rate limiting and CORS protection
- For production use, consider adding:
- HTTPS encryption
- Strong authentication
- More robust input validation
- Backup solutions for your data
📋 Epic Management with listEpics
The new listEpics
tool provides a convenient way to view and manage all available epics in your IntelliPlan workspace.
🔍 Filtering and Sorting Options
The listEpics
tool supports the following parameters:
Parameter | Type | Default | Description |
---|---|---|---|
statusFilter | string | 'all' | Filter epics by status ('all', 'todo', 'in-progress', 'done') |
sortBy | string | 'updated' | Sort epics by field ('name', 'created', 'updated', 'status', 'completion') |
sortOrder | string | 'desc' | Sort order ('asc', 'desc') |
limit | number | 20 | Maximum number of epics to return |
basePath | string | - | Base path for storage (required if storage is not already configured) |
📊 Output Format
The tool returns a formatted table with the following columns:
- Epic ID
- Description
- Status (with visual indicators)
- Task completion (completed/total)
- Completion percentage
🚀 Example Usage
Basic usage:
With filtering and sorting:
When storage is not configured:
🛠️ Getting Started
- Install IntelliPlan:
- Configure in Cursor: Add to your
.cursor-settings.json
: - Enable & Start Planning: Activate MCP in your editor settings and start organizing your development process!
📝 Customizing Planning Process
IntelliPlan supports customizable planning processes through JSON configuration files:
- Create Configuration Files:
You can place JSON configuration files anywhere in your project. The
config/planning/
directory is suggested for organization, but not required. Seeconfig/sample-planning-config.json
for an example. - Using the Configuration Builder:
IntelliPlan provides an interactive tool to create planning configurations:This will guide you through a step-by-step process to define your custom planning steps.
- Direct Configuration Creation:
For more advanced users, you can create a configuration directly:
- Configuration Structure:
- Use Custom Configuration:
- LLM-Generated Configurations: The configuration path doesn't have to point to an existing file. The language model can generate custom planning configurations on-the-fly based on your requirements. Simply ask the LLM to create a planning configuration for your specific needs, and it will generate the appropriate JSON configuration for your use case.
🔍 Why IntelliPlan?
Unlike traditional task managers that live outside your development environment, IntelliPlan works right where you code. This integration eliminates context switching and keeps your planning tightly coupled with implementation.
IntelliPlan's AI capabilities go beyond simple task tracking - it understands the structure of your project and provides intelligent suggestions for implementation, testing strategies, and complexity analysis.
📄 License
MIT
You must be authenticated.
remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
Tools
IntelliPlan
Related MCP Servers
- JavaScript
- JavaScriptMIT License
- GoMIT License
- GoMIT License