create-task
Create a new task with a title and description in the Kanban MCP Server. Organize and manage Kanban-style tasks with clear priorities, tags, and status tracking.
Instructions
create a new todo task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | ||
task_title | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"task_title": {
"type": "string"
}
},
"required": [
"task_title",
"description"
],
"type": "object"
}