Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
FILE_PATH | No | Path to JSON file for task storage |
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 |
---|---|
createTask | Create a new task with optional parent and index positioning. This tool initiates a new workflow for handling user requests. The workflow is as follows:
|
getTask | Get a task by its ID |
listTasks | List tasks from hierarchical structure, optionally filtered by parentId. Returns root tasks if no parentId specified, or direct children of specified parent task. |
updateTask | Update an existing task |
deleteTask | Delete a task by its ID |
startTask | Start a task (change status to in_progress)
|
completeTask | Complete a task and get the next task to execute.
To start the next task, execute |