create_project_with_tasks
Automate project creation in Amazing Marvin by setting up a project with multiple tasks using natural language commands through the MCP server.
Instructions
Create a project with multiple tasks at once
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_title | Yes | ||
project_type | No | project | |
task_titles | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_title": {
"title": "Project Title",
"type": "string"
},
"project_type": {
"default": "project",
"title": "Project Type",
"type": "string"
},
"task_titles": {
"items": {
"type": "string"
},
"title": "Task Titles",
"type": "array"
}
},
"required": [
"project_title",
"task_titles"
],
"type": "object"
}