add_task
Create and manage tasks by adding descriptions, due dates, priorities, projects, and tags through the TaskWarrior MCP Server interface.
Instructions
Add a new task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | ||
due | No | ||
priority | No | ||
project | No | ||
tags | No |
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"
}