Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
PORT | No | Port to run the API server on (when running in server mode) | 3000 |
STORAGE_MODE | No | Storage mode for IntelliPlan - set to 'remote' to use a remote server instead of local filesystem | local |
STORAGE_PATH | No | Location where the API server will store data (when running in server mode) | . |
REMOTE_API_KEY | No | API key for authentication with remote server if authentication is enabled | |
REMOTE_API_URL | No | Custom server URL for remote storage mode | http://localhost:4007 |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
createEpic | Creates a new Epic (top-level task) with planning details and optional initial Task creation. |
manageItems | Manages Epics, Tasks, and Subtasks. |
executeItem | Executes or provides guidance for executing an Epic or Task. |
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. |
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 |