.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/tuannvm/codex-mcp-server
home/mcp-servers/tuannvm/codex-mcp-server
tuannvm avatar

codex-mcp-server

bytuannvm· 3 MCP servers

Installs

4.2k

Stars

611

Forks

77

Category

Frontend Development

View on GitHub

TL;DR

Bridge between Claude and OpenAI's Codex CLI — get AI-powered code analysis, generation, and review right in your editor.

How to install codex-mcp-server?

tuannvm/codex-mcp-server
$git clone https://github.com/tuannvm/codex-mcp-server

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install codex-mcp-server by running `git clone https://github.com/tuannvm/codex-mcp-server`, then use it for the current task and follow its documentation at https://github.com/tuannvm/codex-mcp-server.

Files · 1

View on GitHub
README.md
1# Codex MCP Server
2 
3[![npm version](https://img.shields.io/npm/v/codex-mcp-server.svg)](https://www.npmjs.com/package/codex-mcp-server)
4[![npm downloads](https://img.shields.io/npm/dm/codex-mcp-server.svg)](https://www.npmjs.com/package/codex-mcp-server)
5[![license](https://img.shields.io/npm/l/codex-mcp-server.svg)](https://www.npmjs.com/package/codex-mcp-server)
6 
7Bridge between Claude and OpenAI's Codex CLI — get AI-powered code analysis, generation, and review right in your editor.
8 
9```mermaid
10graph LR
11 A[Claude Code] --> B[Codex MCP Server]
12 B --> C[Codex CLI]
13 C --> D[OpenAI API]
14 
15 style A fill:#FF6B35
16 style B fill:#4A90E2
17 style C fill:#00D4AA
18 style D fill:#FFA500
19```
20 
21## Quick Start
22 
23### 1. Install Codex CLI
24 
25```bash
26npm i -g @openai/codex
27codex login --api-key "your-openai-api-key"
28```
29 
30### 2. Add to Claude Code
31 
32```bash
33claude mcp add codex-cli -- npx -y codex-mcp-server
34```
35 
36### 3. Start Using
37 
38```
39Ask codex to explain this function
40Use codex to refactor this code for better performance
41Use review to check my uncommitted changes
42```
43 
44## One-Click Install
45 
46[![VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect/mcp/install?name=codex-cli&config=%7B%22type%22%3A%22stdio%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22codex-mcp-server%22%5D%7D)
47[![VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=codex-cli&config=%7B%22type%22%3A%22stdio%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22codex-mcp-server%22%5D%7D)
48[![Cursor](https://img.shields.io/badge/Cursor-Install-00D8FF?style=flat-square&logo=cursor&logoColor=white)](https://cursor.com/en/install-mcp?name=codex&config=eyJ0eXBlIjoic3RkaW8iLCJjb21tYW5kIjoibnB4IC15IGNvZGV4LW1jcC1zZXJ2ZXIiLCJlbnYiOnt9fQ%3D%3D)
49 
50## Tools
51 
52| Tool | Description |
53|------|-------------|
54| `codex` | AI coding assistant with session support, model selection, and structured output metadata |
55| `review` | AI-powered code review for uncommitted changes, branches, or commits |
56| `websearch` | Web search using Codex CLI with customizable result count and search depth |
57| `listSessions` | View active conversation sessions |
58| `ping` | Test server connection |
59| `help` | Get Codex CLI help |
60 
61## Examples
62 
63**Code analysis:**
64```
65Use codex to analyze this authentication logic for security issues
66```
67 
68**Multi-turn conversations:**
69```
70Use codex with sessionId "refactor" to analyze this module
71Use codex with sessionId "refactor" to implement your suggestions
72```
73Passing a sessionId creates the session on first use, so listSessions will show
74it (for this server instance) and subsequent calls can resume context.
75 
76**Code review:**
77```
78Use review with base "main" to check my PR changes
79Use review with uncommitted true to review my local changes
80```
81 
82**Advanced options:**
83```
84Use codex with model "o3" and reasoningEffort "high" for complex analysis
85Use codex with fullAuto true and sandbox "workspace-write" for automated tasks
86Use codex with callbackUri "http://localhost:1234/callback" for static callbacks
87Use codex to return structuredContent with threadId metadata when available
88```
89 
90**Web search:**
91```
92Use websearch with query "TypeScript 5.8 new features"
93Use websearch with query "Rust vs Go performance 2025" and numResults 15
94Use websearch with query "React Server Components" and searchDepth "full"
95```
96 
97## Requirements
98 
99- **Codex CLI v0.75.0+** — Install with `npm i -g @openai/codex` or `brew install codex`
100- **OpenAI API key** — Run `codex login --api-key "your-key"` to authenticate
101 
102## Codex 0.87 Compatibility
103- **Thread ID + structured output**: When Codex CLI emits `threadId`, this server returns it in content metadata and `structuredContent`, and advertises an `outputSchema` for structured responses.
104 
105## Documentation

Preview

tuannvm/codex-mcp-servertuannvm/codex-mcp-server

# Codex MCP Server

[![npm version](https://img.shields.io/npm/v/codex-mcp-server.svg)](https://www.npmjs.com/package/codex-mcp-server)

[![npm downloads](https://img.shields.io/npm/dm/codex-mcp-server.svg)](https://www.npmjs.com/package/codex-mcp-server)

[![license](https://img.shields.io/npm/l/codex-mcp-server.svg)](https://www.npmjs.com/package/codex-mcp-server)

Repotuannvm/codex-mcp-server
TypeMCP Servers
CategoryFrontend Development
UpdatedMay 2026
License—
First seenJul 27, 2026

Tags

MCPclaude-codecodex

Related

6 picks
Type
  1. jgravelle avatarjcodemunch-mcpToken-efficient code exploration via tree-sitter AST parsing. 70+ languages, 95%+ token savings.MCP ServersJul 202694k2.3k
  2. minimax-ai avatarminimax-coding-plan-mcpSpecialized MiniMax Model Context Protocol (MCP) server designed for coding-plan usersMCP ServersFeb 202677k94
  3. neomjs avatarneoNeo.mjs is a self-evolving software organism: a professional end-to-end AI engineering team whose cross-model swarm inhabits live apps via Neural Link, Active Hybrid GraphRAG, DreamService, and self-healing loops.MCP ServersJul 202639k3.2k
  4. jpisnice avatarshadcn-ui-mcp-serverA Model Context Protocol (MCP) server for shadcn/ui components, providing AI assistants with access to component source code, demos, blocks, and metadata.MCP ServersMay 202613k2.9k
  5. oaslananka avatarkicad-mcp-proProduction-grade MCP server for KiCad EDA—PCB design, DRC, simulation, BOM, DFM, and manufacturing.MCP ServersJul 20269.5k37
  6. taiga-family avatartaiga-ui-mcpModel Context Protocol server providing Taiga UI documentation search and scaffolding tools.MCP ServersJul 20268.7k14