orgo_create_project
Create a new project container to organize virtual computers. Specify a unique name and optional icon to begin managing computers within the project.
Instructions
Create a new Orgo project.
Projects are containers for computers. Create a project first,
then add computers to it with orgo_create_computer.
Args:
params (CreateProjectInput): Input parameters containing:
- name (str): Unique name for the project (e.g., 'qa-automation')
- icon_url (Optional[str]): URL for project icon
Returns:
str: JSON with created project details:
{
"id": str,
"name": str,
"status": str,
"created_at": str,
"desktops": []
}
Examples:
- "Create project for QA testing" -> params with name="qa-automation"
- "Make new project called dev-env" -> params with name="dev-env"
Error Handling:
- Returns "Error: Conflict..." if project name already exists
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |