createProject
Set up new projects in Teamwork by defining project name, description, company ID, category ID, start date, end date, and status using Teamwork MCP's streamlined interface.
Instructions
Create a new project in Teamwork
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| categoryId | No | The ID of the category the project belongs to | |
| companyId | No | The ID of the company the project belongs to | |
| description | No | The description of the project | |
| endDate | No | The end date of the project (format: YYYYMMDD) | |
| name | Yes | The name of the project (required) | |
| startDate | No | The start date of the project (format: YYYYMMDD) | |
| status | No | The status of the project |
Input Schema (JSON Schema)
{
"properties": {
"categoryId": {
"description": "The ID of the category the project belongs to",
"type": "integer"
},
"companyId": {
"description": "The ID of the company the project belongs to",
"type": "integer"
},
"description": {
"description": "The description of the project",
"type": "string"
},
"endDate": {
"description": "The end date of the project (format: YYYYMMDD)",
"type": "string"
},
"name": {
"description": "The name of the project (required)",
"type": "string"
},
"startDate": {
"description": "The start date of the project (format: YYYYMMDD)",
"type": "string"
},
"status": {
"description": "The status of the project",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}