create_project
Initiate a new lighting project by specifying a name and description to organize and manage theatrical lighting design workflows on the LacyLights MCP Server.
Instructions
Create a new lighting project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Project description | |
name | Yes | Project name |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Project description",
"type": "string"
},
"name": {
"description": "Project name",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}