get_fixture_inventory
Retrieve available lighting fixtures and their capabilities globally or for a specific project. Filter by fixture type and include detailed definitions for optimized lighting design on the LacyLights MCP Server.
Instructions
Get available lighting fixtures and their capabilities for a project or globally
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fixtureType | No | Optional fixture type filter | |
includeDefinitions | No | Include available fixture definitions | |
projectId | No | Optional project ID to filter fixtures |
Input Schema (JSON Schema)
{
"properties": {
"fixtureType": {
"description": "Optional fixture type filter",
"enum": [
"LED_PAR",
"MOVING_HEAD",
"STROBE",
"DIMMER",
"OTHER"
],
"type": "string"
},
"includeDefinitions": {
"default": true,
"description": "Include available fixture definitions",
"type": "boolean"
},
"projectId": {
"description": "Optional project ID to filter fixtures",
"type": "string"
}
},
"type": "object"
}