
IntelliPlan
IntelliPlan
Tools
executeItem
Executes or provides guidance for executing an Epic or Task.
batchEpic
Creates a complete Epic with multiple tasks, each potentially having multiple subtasks, in a single operation.
createPlanningConfig
Creates a JSON configuration file for the planEpic tool, allowing customization of planning steps and process
createDirectPlanningConfig
Directly creates a JSON configuration file for planEpic from complete specifications
createEpic
Creates a new Epic (top-level task) with planning details and optional initial Task creation.
manageItems
Manages Epics, Tasks, and Subtasks.
getEpicOverview
Provides a detailed, easy-to-read overview of an Epic, its tasks, and related information.
expandItem
Helps break down an Epic, Task, or Subtask into smaller items.
manageItemStorage
Manages storage configuration and export for Epics.
planEpic
Interactively creates a detailed implementation plan with hierarchical tasks and subtasks through sequential thinking, guiding the agent through multiple steps of refinement. Must be called BEFORE using the createEpic tool to ensure a comprehensive plan.
README
✨ IntelliPlan MCP
<p align="center"> <em>Your AI-powered Epic Planning Assistant for Cursor AI</em> </p>
<a href="https://glama.ai/mcp/servers/@RyanCardin15/IntelliPlan-MCP"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@RyanCardin15/IntelliPlan-MCP/badge" alt="IntelliPlan MCP server" /> </a>
🚀 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. |
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
# Set up your project storage
@IntelliPlanMCP manageItems action=configure basePath="/path/to/your/project"
# Create a new epic
@IntelliPlanMCP createEpic description="Build user authentication system with JWT"
# Add a task to your epic
@IntelliPlanMCP manageItems action=createTask epicId=your-epic-id description="Implement login endpoint"
# Get an overview of all your epics
@IntelliPlanMCP manageItems action=listEpics
# Create a complete epic with nested tasks in a single operation
@IntelliPlanMCP batchEpic description="Multi-tenant user authentication" basePath="/path/to/project" tasks=[...]
# Get an epic overview with specific diagram types
@IntelliPlanMCP getEpicOverview epicId=your-epic-id basePath="/path/to/project" diagramTypes=["progressPie", "dependencyGraph", "userJourney"]
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
.
🔄 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:
# Set environment variables for configuration or use defaults npm run start:api
-
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:
STORAGE_MODE=remote
This will connect to a server running on http://localhost:4007 by default.
-
Advanced Configuration (optional):
STORAGE_MODE=remote REMOTE_API_URL=http://your-server:4007 # Custom server URL REMOTE_API_KEY=your-api-key # If authentication is enabled
-
Start IntelliPlan in remote mode:
npm run dev
-
Configure in Cursor: Add to your
.cursor-settings.json
:{ "mcpServers": { "IntelliPlanMCP": { "command": "node", "args": ["path/to/dist/index.js"], "env": { "STORAGE_MODE": "remote" } } } }
🛡️ 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
🛠️ Getting Started
-
Install IntelliPlan:
npm install npm run build
-
Configure in Cursor: Add to your
.cursor-settings.json
:{ "mcpServers": { "IntelliPlanMCP": { "command": "node", "args": ["path/to/dist/index.js"] } } }
-
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:
@IntelliPlanMCP createPlanningConfig currentStep=0
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:
@IntelliPlanMCP createDirectPlanningConfig name="Custom Plan" description="Your custom planning process" outputPath="config/your-config.json" steps=[...]
-
Configuration Structure:
{ "id": "your-plan-id", "name": "Your Plan Name", "description": "Description of your planning process", "version": "1.0", "defaultMaxDepth": 3, "includeTestStrategy": true, "steps": [ { "id": "step-id", "name": "Step Name", "description": "Step description", "order": 0, "instructions": ["Instruction 1", "Instruction 2"], "thinkingPrompts": ["Thinking prompt 1", "Thinking prompt 2"], "nextStepPrompt": "Guidance for the next step", "requiresPreviousStepData": false } // Additional steps... ] }
-
Use Custom Configuration:
@IntelliPlanMCP planEpic description="Your project" configPath="full/path/to/your/config.json"
-
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
推荐服务器

Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。