codex-consultant
Verified Safeby cvidmar
Overview
Provides Claude Code with an MCP server to get second opinions and code reviews from OpenAI's Codex CLI, acting as a bridge between the two AI assistants.
Installation
/absolute/path/to/codex-consultantEnvironment Variables
- OPENAI_API_KEY
Security Notes
The server uses `os/exec` to call external commands ('codex' and 'git'). While user-supplied arguments for `codex exec` are passed after a `--` delimiter, which helps prevent direct shell command injection from the prompt content, the security ultimately depends on the robustness of the underlying `codex` CLI in handling potentially malicious input within its prompt arguments. The `git diff` commands are executed with fixed arguments and do not directly incorporate user-controlled strings as command arguments, posing a lower risk. No hardcoded secrets or network listening are present in the server's own Go code.
Similar Servers
claude-code-mcp
Acts as an MCP server to enable LLMs to run Claude Code CLI in one-shot mode, bypassing permissions for complex coding, file system, Git, and terminal operations.
claude-codex-settings
A comprehensive toolkit and configuration for developing Claude Code plugins, integrating various external services and APIs, and enhancing AI-assisted coding workflows.
codex-mcp-server
Serves as a Model Context Protocol (MCP) bridge to integrate OpenAI's Codex CLI for AI-powered code analysis, generation, and review within various editors like Claude Code, VS Code, and Cursor.
consult-llm-mcp
An MCP server that allows AI agents like Claude Code to consult stronger, more capable AI models (e.g., GPT-5.2, Gemini 3.0 Pro) for complex code analysis, debugging, and architectural advice.