Codex Desktop macOS: Computer Use approval denied via MCP elicitation for every app even after reinstall, reboot, and granting Screen Recording + Accessibility
What version of the Codex App are you using (From “About Codex” dialog)?
Codex Desktop app 26.417.41555
What subscription do you have?
Pro
What platform is your computer?
macOS on Apple Silicon
What issue are you seeing?
Computer Use cannot control any app.
list_apps works and returns installed/running apps, but every actual app-control request fails with:
Computer Use approval denied via MCP elicitation for app '...'
This happens for:
Google ChromeSafariFinder
Codex itself returns a different expected message (not allowed ... for safety reasons), so that appears unrelated.
What steps can reproduce the bug?
- Open Codex Desktop on macOS.
- Ensure the
Computer Useplugin is enabled. - Attempt a Computer Use action such as
get_app_stateforFinderorGoogle Chrome. - The request fails immediately with:
Computer Use approval denied via MCP elicitation for app 'com.apple.finder'- or
Computer Use approval denied via MCP elicitation for app 'com.google.Chrome'
What is the expected behavior?
Codex Desktop should surface and complete the per-app approval flow, then allow Computer Use to capture app state and control the approved app.
Additional information
The backend creates the approval request, but the approval never completes successfully in the desktop app.
Additional information
I verified the following:
list_appsworks, so the plugin/MCP server is running.- The problem is not Chrome-specific:
Finderfails the same way.Safarifails the same way.- I fully quit Codex, reinstalled Codex Desktop, rebooted the Mac, and retried.
- I manually added and enabled both of these in macOS privacy settings:
CodexCodex Computer Use- They are enabled in:
Privacy & Security > AccessibilityPrivacy & Security > Screen & System Audio Recording
I also inspected local behavior and found:
- The backend still emits the approval request, for example:
Allow Codex to use Google Chrome?- Earlier logs on this same Mac showed successful approval handling in older sessions:
mcpServer/elicitation/request response={"action":"accept","content":{},"_meta":null}- In current failing sessions, the desktop notifications service starts, but there is no successful approval completion path for the request.
This makes it look like a Codex Desktop approval / elicitation bug rather than a macOS permission issue or a browser-specific issue.
Relevant symptoms
- Computer Use helper present:
com.openai.sky.CUAService - Accessibility granted
- Screen Recording granted
- Approval request still fails at the Codex Desktop elicitation layer
Notes
This is reproducible after:
- reinstall
- reboot
- fresh thread
- testing multiple apps
- confirming both required macOS permissions are enabled
9 Comments
Potential duplicates detected. Please review them and close your issue if it is a duplicate.
Powered by Codex Action
I ran into this exact pattern shipping a macOS agent on AXUIElement and ScreenCaptureKit. elicitation denials after reinstall almost always trace to a TCC mismatch on the helper binary, not the parent app. the CUAService gets its own tcc row keyed on code signature, and reinstall can leave a stale entry that silently fails even when the UI shows it as granted. worth trying tccutil reset All com.openai.sky.CUAService then relaunch and re-grant. also open Console.app filtering on tccd while you trigger the action, the real denial reason shows up there even when the elicitation layer just says approval denied. the per-app approval gate sits on top of TCC so both have to line up.
Additional diagnostic update:
I reset TCC for
com.openai.sky.CUAService, re-granted permissions, and confirmed bothCodexandCodex Computer Useare enabled in:AccessibilityScreen & System Audio RecordingI then monitored macOS
tccdlive while triggering Computer Use requests forFinderandGoogle Chrome.Important result:
There was no Codex-related
tccdactivity at the moment of failure when filtering for:openaicodexskycuacom.openai.sky.CUAServicecom.openai.codexThis means the request is not reaching the actual macOS TCC permission-enforcement stage.
The user-facing error still occurs immediately:
Computer Use approval denied via MCP elicitation for app 'com.apple.finder'Computer Use approval denied via MCP elicitation for app 'com.google.Chrome'Conclusion:
The failure appears to happen entirely inside Codex Desktop’s own MCP elicitation / approval flow before a real macOS protected-access request is made.
Hopefully this will be fixed soon!
Problem: your thread is likely affected by a Codex Desktop Computer Use approval bug..
Solution: start a new thread and ask it to us chrome using Computer Use.
But know this that computer use is extremely slower than browser automation
I hit this same class of failure while setting up a Mac agent workstation, and the useful distinction was separating three layers that all look like "permission denied" from the outside:
CodexandCodex Computer Usecomputer-use/list_appsworks at allIf
list_appsworks butget_app_statefails immediately withComputer Use approval denied via MCP elicitation, that points more at the Codex approval/elicitation layer than basic Screen Recording or Accessibility.The smoke test I now use is:
I wrote up the practical checklist I used here:
https://igorganapolsky.github.io/openclaw-mac-ai-workstation-setup/troubleshooting.html
I also packaged the full Mac setup as a paid done-for-you service, but the checklist itself should help people narrow whether they are dealing with TCC, plugin availability, or the Desktop elicitation bug:
https://igorganapolsky.github.io/openclaw-mac-ai-workstation-setup/
"Approval denied every app even after reinstall, reboot, grant" is the cleanest TCC bundle-ID mismatch signature. macOS records permission against the bundle identifier that was running when you granted it, and if you ran Codex from an unsigned DMG copy or a previous build with a different signature, TCC has approval for that bundle — but the running process has a different bundle ID, so the MCP elicitation gets denied no matter how many times you re-grant.
If the running bundle ID differs from the TCC-approved one, the fix is to fully remove the old/unsigned copies and re-grant against the canonical signed bundle.
Full walkthrough of this and 5 other root causes for "Computer Use unavailable / approval denied": https://igorganapolsky.github.io/openclaw-mac-ai-workstation-setup/troubleshooting.html
Free script in the repo (
scripts/self-diagnose.mjs) bundles the codesign vs TCC comparison with secret redaction. $19 quick read on that page reviews the bundle and confirms the cause.this issue is so annoying
The useful debugging split here is: OS permission, tool availability, and app-level approval are three separate gates.
If
list_appsworks, the MCP/plugin path is alive. If Finder/Chrome fail immediately with “approval denied via MCP elicitation” and there is no matchingtccdactivity, that’s a strong signal the request is dying before macOS TCC is even asked.For agent computer-use systems, I’d make that boundary explicit in the approval model:
Each gate should log where it failed: MCP server, desktop elicitation, OS permission, or target app. Otherwise all of these collapse into the same user-facing “permission denied,” and users end up resetting the wrong layer.
Not claiming this is the root cause here, but the repro detail about no
tccdevent is exactly the kind of signal I’d expect from an app-level approval-state bug rather than a raw macOS permission failure.