create_task
Generate and manage task entries by specifying a title, status, and assigned user on the MCP Test Server for streamlined task tracking and organization.
Instructions
Create a new task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignedTo | No | ID of user assigned to this task | |
status | No | Task status | pending |
title | Yes | Task title |
Input Schema (JSON Schema)
{
"properties": {
"assignedTo": {
"description": "ID of user assigned to this task",
"type": "number"
},
"status": {
"default": "pending",
"description": "Task status",
"enum": [
"pending",
"in-progress",
"completed"
],
"type": "string"
},
"title": {
"description": "Task title",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}