TaskWarrior MCP Server

add_task

Add a new task

Input Schema

NameRequiredDescriptionDefault
descriptionYes
dueNo
priorityNo
projectNo
tagsNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "description": { "type": "string" }, "due": { "type": "string" }, "priority": { "enum": [ "H", "M", "L" ], "type": "string" }, "project": { "pattern": "^[a-z.]+$", "type": "string" }, "tags": { "items": { "pattern": "^a-z$", "type": "string" }, "type": "array" } }, "required": [ "description" ], "type": "object" }

You must be authenticated.

Other Tools