Skip to content
Prism

Connect ChatGPT to After Effects

Yes. There is an MCP server for After Effects, and ChatGPT can drive it. What connects is the app, not the model: GPT has no way to reach anything on its own, so it is ChatGPT desktop, ChatGPT on the web, or Codex that holds the connection and calls Prism's tools. About five minutes, once.

OpenAI surfaceConnectsWhere you add it
ChatGPT desktopYesSettings ▸ apps and connectors
ChatGPT webYesSame account, same server list
CodexYesIts own MCP config
GPT via the APINoYou would be building your own client
The prism server listed under Servers, enabled, with no Authenticate button left to press

Connect ChatGPT to After Effects

Choose Streamable HTTP, not STDIO

STDIO launches a server from your own disk. Prism is reached over the network, so STDIO has nothing to launch and the connection fails looking like Prism is down. This is the most common setup mistake.

Install the Prism panel
Done in step 1 and step 2.
Sign in from the panel
Done in step 3.
Copy your MCP address
https://live.oneprism.io/after-effects — the same for everyone, and it holds no secret.
4
Open ChatGPT settings and add an MCP server

In the desktop app, open Settings and find the apps and connectors section. The add button is at the top right.

The ChatGPT settings window on the Plugins page, with the Add menu open and Add MCP server highlighted
5
Choose Streamable HTTP, not STDIO

Prism is a server you reach at an address, not a program on your disk.

The Connect to a custom MCP form with the name Prism MCP, Streamable HTTP selected instead of STDIO, and the Prism address in the URL field
6
Paste the address and give it a name
Any name you will recognise later. Nothing depends on it.
7
Save
The save button sits below the form, so scroll down if you do not see it.
8
Click Authenticate and finish in your browser

Saving is not the last step. Authenticate is what links your AI client and the panel to the same account.

The saved prism_mcp server listed under Servers with an Authenticate button beside its toggle
9
Open a composition and confirm the loop
Ask ChatGPT: "Tell me about my current composition." When it reads your comp back, you are connected.

Prove it works

  • "Tell me about my current composition." proves the read path
  • "Stagger these layers by two frames and ease them out." proves the write path
  • "Transcribe this audio layer into subtitles." proves Prism AI

More in your first prompts.

Codex, from the config file

Codex reads MCP servers from its own TOML rather than the ChatGPT settings window. Same address, same account.

# ~/.codex/config.toml
[mcp_servers.prism]
url = "https://live.oneprism.io/after-effects"

Then run the OAuth flow from your shell:

codex mcp login prism

Project-scoped config needs trust

A .codex/config.toml inside a project is ignored unless that project is trusted, so the server silently never loads. Set trust_level = "trusted", or put the entry in ~/.codex/config.toml instead.

If it does not work

What you seeWhat it usually means
The server saves but never connectsSTDIO was chosen instead of Streamable HTTP. Edit the server and change the type
Authenticate opens the browser and nothing happensYou are signed out there, or signed in to a different Prism account
ChatGPT cannot reach PrismThe panel is closed. It has to be open in After Effects
It connects but sees no compositionNo comp is active. Open one

More in troubleshooting.

Common questions