add_task
Add a new task to a project on the MCP Project Context Server by specifying project ID, title, priority, and optional details like description and tags.
Instructions
Add a new task to the project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Task description | |
priority | Yes | Task priority | |
projectId | Yes | Project ID | |
tags | No | Task tags | |
title | Yes | Task title |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"description": "Task description",
"type": "string"
},
"priority": {
"description": "Task priority",
"enum": [
"low",
"medium",
"high",
"critical"
],
"type": "string"
},
"projectId": {
"description": "Project ID",
"type": "string"
},
"tags": {
"default": [],
"description": "Task tags",
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"description": "Task title",
"type": "string"
}
},
"required": [
"projectId",
"title",
"priority"
],
"type": "object"
}