convert_task_markdown
Transform markdown task files into Claude Code MCP-compatible JSON format for execution, enabling streamlined task automation and processing.
Instructions
Converts markdown task files into Claude Code MCP-compatible JSON format. Returns an array of tasks that can be executed using the claude_code tool.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
markdownPath | Yes | Path to the markdown task file to convert. | |
outputPath | No | Optional path where to save the JSON output. If not provided, returns the JSON directly. |
Input Schema (JSON Schema)
{
"properties": {
"markdownPath": {
"description": "Path to the markdown task file to convert.",
"type": "string"
},
"outputPath": {
"description": "Optional path where to save the JSON output. If not provided, returns the JSON directly.",
"type": "string"
}
},
"required": [
"markdownPath"
],
"type": "object"
}