create_task
Create and manage tasks in DeltaTask MCP Server by specifying title, description, urgency, effort, and tags for efficient task organization and prioritization.
Instructions
Create a new task.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
effort | No | ||
tags | No | ||
title | Yes | ||
urgency | No |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"default": "",
"title": "Description",
"type": "string"
},
"effort": {
"default": 1,
"title": "Effort",
"type": "integer"
},
"tags": {
"default": [],
"items": {
"type": "string"
},
"title": "Tags",
"type": "array"
},
"title": {
"title": "Title",
"type": "string"
},
"urgency": {
"default": 1,
"title": "Urgency",
"type": "integer"
}
},
"required": [
"title"
],
"title": "create_taskArguments",
"type": "object"
}