taskqueue-mcp

create_task

Create a new task within an existing project. You can optionally include tool and rule recommendations to guide task completion.

Input Schema

NameRequiredDescriptionDefault
descriptionYesA detailed description of the task.
projectIdYesThe ID of the project to add the task to (e.g., proj-1).
ruleRecommendationsNoRecommendations for relevant rules to review when completing the task.
titleYesThe title of the task.
toolRecommendationsNoRecommendations for tools to use to complete the task.

Input Schema (JSON Schema)

{ "properties": { "description": { "description": "A detailed description of the task.", "type": "string" }, "projectId": { "description": "The ID of the project to add the task to (e.g., proj-1).", "type": "string" }, "ruleRecommendations": { "description": "Recommendations for relevant rules to review when completing the task.", "type": "string" }, "title": { "description": "The title of the task.", "type": "string" }, "toolRecommendations": { "description": "Recommendations for tools to use to complete the task.", "type": "string" } }, "required": [ "projectId", "title", "description" ], "type": "object" }