Control the ChatGPT macOS Desktop App directly from the terminal. OpenCLI supports two automation approaches for ChatGPT.
The current built-in commands use native AppleScript automation — no extra launch flags needed.
- Install the official ChatGPT Desktop App from OpenAI.
- Grant Accessibility permissions to your terminal app in System Settings → Privacy & Security → Accessibility.
opencli chatgpt status: Check if the ChatGPT app is currently running.opencli chatgpt new: Activate ChatGPT and pressCmd+Nto start a new conversation.opencli chatgpt send "message": Copy your message to clipboard, activate ChatGPT, paste, and submit.opencli chatgpt read: Read the last visible message from the focused ChatGPT window via the Accessibility tree.opencli chatgpt ask "message": Send a prompt and wait for the visible reply in one shot.
ChatGPT Desktop is also an Electron app and can be launched with a remote debugging port:
/Applications/ChatGPT.app/Contents/MacOS/ChatGPT \
--remote-debugging-port=9224export OPENCLI_CDP_ENDPOINT="http://127.0.0.1:9224"The CDP approach is primarily for advanced automation and future desktop-only commands. The built-in command set above still works in the default AppleScript path unless you explicitly route through
OPENCLI_CDP_ENDPOINT.
- AppleScript mode: Uses
osascriptto control ChatGPT,pbcopy/pbpasteto paste prompts, and the macOS Accessibility tree to read visible chat messages. - CDP mode: Connects via Chrome DevTools Protocol to the Electron renderer process.
- macOS only (AppleScript dependency)
- AppleScript mode requires Accessibility permissions
readreturns the last visible message in the focused ChatGPT window — scroll first if the message you want is not visible