Codex Security Cloud MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Codex Security Cloud MCPlist open findings for repo my-app"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Codex Security Cloud MCP
MCP server for the Codex Security Cloud service exposed by ChatGPT/Codex Cloud.
The server assumes the user already has Codex installed and authenticated. It reads the existing Codex auth file and does not implement a separate login flow.
Tools
list_security_metadata: lists accessible repos and author filters.list_findings: lists open or closed findings with repo, severity, patch, author, sort, cursor, and limit filters.get_finding: fetches normalized finding detail, including generated patch metadata when present.close_finding: closes a finding asfixed,wontfix,duplicate, orfalse_positive.reopen_finding: reopens a closed finding asnew.request_site_pr: asks the cloud service to start its site-side patch/PR workflow, then briefly polls the finding for PR URL/state metadata.apply_generated_patch: applies an already-generated patch locally, commits it, and optionally closes the finding as fixed.
Use the findingId returned by list_findings for get_finding, close/reopen, PR, and patch tools. The MCP intentionally omits backend-only ids and raw payloads from normal responses.
list_findings is intentionally compact so an agent can choose what to inspect without loading every finding body. get_finding is also compact by default: it includes a derived summary, compact relevant-line locations, generated patch metadata, and site PR metadata. The summary is extracted from an explicit Summary/Overview section when present, otherwise from the first paragraph with a bounded length. Use includeDescription: true when an agent needs the exact full description from the endpoint. Use includePatchDiff: true only when an agent needs to inspect or manually repair the generated patch. Use includeEvidence: true only when an agent needs relevant-line source content, validation/fix reports, or attack-path evidence. apply_generated_patch fetches the generated diff internally, so applying a clean generated patch does not require loading the diff into model context.
apply_generated_patch fails before applying if the generated patch is missing, the repository has staged changes, the patch touches dirty files, or git apply --check fails. On failure it returns the phase, a compact finding reference, current HEAD, expected base commit, touched files, git stderr, and the suggested commit message so an agent can take over manually.
If autoClose is true, the close happens only after a successful local commit. The close reason uses neutral wording:
An agent applied and committed the generated patch on <date time>.
Commit: <sha>Related MCP server: code-intel-mcp
Development
npm install
npm run build
node ./dist/server.jsMCP Configuration
{
"mcpServers": {
"codex-security-cloud": {
"command": "node",
"args": ["/Users/obinnanwachukwu/Code/codex-security-cloud-mcp/dist/server.js"]
}
}
}Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/obinnanwachukwu1/codex-security-cloud-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server