assess_create_project
Create a new project in the Assess realm by specifying a project name, optional start date, and parent collection record. Designed for the addTaskManager MCP Server to manage tasks and projects using the ADD framework.
Instructions
Create a new project in Assess realm.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collectionRecordName | No | Optional recordName of the parent collection. | |
projectName | Yes | Project name/description (max 1500 chars) | |
startDate | No | Optional start date (ISO format) |
Input Schema (JSON Schema)
{
"properties": {
"collectionRecordName": {
"description": "Optional recordName of the parent collection.",
"type": "string"
},
"projectName": {
"description": "Project name/description (max 1500 chars)",
"type": "string"
},
"startDate": {
"description": "Optional start date (ISO format)",
"format": "date-time",
"type": "string"
}
},
"required": [
"projectName"
],
"type": "object"
}