codex-mcp
MCP server wrapping OpenAI Codex SDK to run Codex agents for code generation, debugging, and more, authenticating via ChatGPT OAuth.
README
codex-mcp
An MCP (Model Context Protocol) server that wraps the OpenAI Codex SDK, enabling any MCP-compatible client (Claude Code, Cursor, Windsurf, etc.) to run Codex agents.
No API key required — authenticates via ChatGPT OAuth login.
Features
codex_execute— Run a prompt through the Codex agent (code generation, bug fixes, refactoring, analysis)codex_execute_structured— Get structured JSON output with a custom schemacodex_resume_thread— Resume a previous Codex thread to continue a conversation with full contextcodex_streamed— Stream execution with detailed intermediate events (reasoning, commands, file changes)
Prerequisites
- Bun v1.0+
- OpenAI Codex CLI — must be installed globally
Setup
1. Install Codex CLI
npm install -g @openai/codex
2. Authenticate with ChatGPT
codex login
This opens a browser for ChatGPT OAuth login. Once authenticated, the server uses your session — no API key needed.
3. Install dependencies
bun install
Tip: You can also pass an
api_keyparameter to any tool if you prefer using an OpenAI API key instead of OAuth.
4. Run the server
bun run start
MCP Client Configuration
Add this to your MCP client config:
Claude Code
claude mcp add codex-mcp -- bun run --cwd /path/to/codex-mcp src/index.ts
Claude Desktop / Cursor / Generic
Add to your MCP settings JSON:
{
"mcpServers": {
"codex-mcp": {
"command": "bun",
"args": ["run", "--cwd", "/path/to/codex-mcp", "src/index.ts"]
}
}
}
Replace /path/to/codex-mcp with the actual path to this repository.
Tools
codex_execute
Run a prompt through the Codex agent.
| Parameter | Type | Required | Description |
|---|---|---|---|
prompt |
string | Yes | The task instruction for Codex |
model |
string | No | Model to use (default: gpt-5.4, e.g., o4-mini) |
sandbox_mode |
string | No | read-only, workspace-write, or danger-full-access |
working_directory |
string | No | Working directory path |
reasoning_effort |
string | No | minimal, low, medium (default), high, xhigh |
approval_policy |
string | No | never (default), on-request, on-failure, untrusted |
web_search_mode |
string | No | disabled, cached, live |
additional_directories |
string[] | No | Extra directories to access |
api_key |
string | No | OpenAI API key (uses OAuth if omitted) |
base_url |
string | No | Custom API base URL |
codex_execute_structured
Same as codex_execute but returns structured JSON output.
| Parameter | Type | Required | Description |
|---|---|---|---|
prompt |
string | Yes | The task instruction |
output_schema |
object | Yes | JSON Schema for the output format |
| (other params) | Same as codex_execute |
codex_resume_thread
Resume a previous thread to continue the conversation.
| Parameter | Type | Required | Description |
|---|---|---|---|
thread_id |
string | Yes | Thread ID to resume |
prompt |
string | Yes | Follow-up instruction |
| (other params) | Same as codex_execute |
codex_streamed
Run with streaming to capture all intermediate events.
Same parameters as codex_execute. Returns detailed event flow including reasoning steps, command executions, and file changes.
Development
# Run with hot reload
bun run dev
# Type check
bun run check
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.