create_project
Generate and manage new projects in Amazing Marvin by specifying a title and project type, streamlining task and project organization directly through AI-powered natural language interactions.
Instructions
Create a new project in Amazing Marvin
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_type | No | project | |
title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_type": {
"default": "project",
"title": "Project Type",
"type": "string"
},
"title": {
"title": "Title",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}