analyze_script
Analyze theatrical scripts to extract lighting cues and generate scene suggestions, enhancing lighting design for LacyLights MCP Server.
Instructions
Analyze a theatrical script to extract lighting-relevant information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
extractLightingCues | No | Extract specific lighting cues from the script | |
scriptText | Yes | The theatrical script text to analyze | |
suggestScenes | No | Generate scene suggestions based on analysis |
Input Schema (JSON Schema)
{
"properties": {
"extractLightingCues": {
"default": true,
"description": "Extract specific lighting cues from the script",
"type": "boolean"
},
"scriptText": {
"description": "The theatrical script text to analyze",
"type": "string"
},
"suggestScenes": {
"default": true,
"description": "Generate scene suggestions based on analysis",
"type": "boolean"
}
},
"required": [
"scriptText"
],
"type": "object"
}