create_project
Initialize a new Coroot project by specifying a unique name. Ensures the project name adheres to specific format rules for integration with the observability platform.
Instructions
Create a new project.
Creates a new Coroot project with the specified name. The name must contain only lowercase letters, numbers, and hyphens.
Args: name: Project name (must match ^a-z0-9?$)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}