run-script
Execute predefined read-only scripts in Adobe After Effects through the MCP server, allowing controlled automation with optional parameters for tailored workflows.
Instructions
Run a read-only script in After Effects
Input Schema
Name | Required | Description | Default |
---|---|---|---|
parameters | No | Optional parameters for the script | |
script | Yes | Name of the predefined script to run |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"parameters": {
"additionalProperties": {},
"description": "Optional parameters for the script",
"type": "object"
},
"script": {
"description": "Name of the predefined script to run",
"type": "string"
}
},
"required": [
"script"
],
"type": "object"
}