Inspect Dom Object
inspect_dom_objectInspect any Premiere Pro DOM object by dot-path to list its properties, methods, and values, making API exploration and debugging easier.
Instructions
Inspect a Premiere Pro DOM object and list its properties, methods, and values. Useful for exploring the API and debugging.
Examples:
"app.project" → project properties
"app.project.activeSequence" → sequence properties
"app.project.activeSequence.videoTracks[0].clips[0]" → first clip on V1
"app.project.activeSequence.videoTracks[0].clips[0].components[0]" → first component of a clip
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| max_depth | No | Max depth for nested inspection (default: 1, max: 3) | |
| object_path | Yes | Dot-path to the DOM object to inspect (e.g., 'app.project.activeSequence') |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ok | Yes | Whether the tool completed successfully. | |
| data | No | Tool-specific result data when ok is true. | |
| tool | Yes | The registered MCP tool name. | |
| error | No | Failure detail when ok is false. |