export_task_status
Export the current status of tasks, subtasks, dependencies, and notes from TaskFlow MCP to a file in markdown, JSON, or HTML format for reference and tracking.
Instructions
Export the current status of all tasks in a request to a file.
This tool allows you to save the current state of tasks, subtasks, dependencies, and notes to a file for reference.
You can specify the output format as 'markdown', 'json', or 'html'.
It's recommended to use absolute paths (e.g., 'C:/Users/username/Documents/task-status.md') rather than relative paths for more reliable file creation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | markdown | |
outputPath | Yes | ||
requestId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "markdown",
"enum": [
"markdown",
"json",
"html"
],
"type": "string"
},
"outputPath": {
"type": "string"
},
"requestId": {
"type": "string"
}
},
"required": [
"requestId",
"outputPath"
],
"type": "object"
}