JSPM

@trishchuk/codex-mcp-tool

1.0.6
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 11
  • Score
    100M100P100Q94161F
  • License MIT

MCP server for Codex CLI integration

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@trishchuk/codex-mcp-tool) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    Codex MCP Tool

    GitHub Release npm version npm downloads License: MIT Open Source

    Codex MCP Tool is an open‑source Model Context Protocol (MCP) server that connects your IDE or AI assistant (Claude, Cursor, etc.) to the Codex CLI. It enables non‑interactive automation with codex exec, safe sandboxed edits with approvals, and large‑scale code analysis via @ file references. Built for reliability and speed, it streams progress updates, supports structured change mode (OLD/NEW patch output), and integrates cleanly with standard MCP clients for code review, refactoring, documentation, and CI automation.

    • Ask Codex questions from your MCP client, or brainstorm ideas programmatically.
    Codex Tool MCP server

    TLDR: Claude + Codex CLI

    Goal: Use Codex directly from your MCP-enabled editor to analyze and edit code efficiently.

    Prerequisites

    Before using this tool, ensure you have:

    1. Node.js (v18.0.0 or higher)
    2. Codex CLI installed and authenticated

    One-Line Setup

    claude mcp add codex-cli -- npx -y @trishchuk/codex-mcp-tool

    Verify Installation

    Type /mcp inside Claude Code to verify the Codex MCP is active.


    Alternative: Import from Claude Desktop

    If you already have it configured in Claude Desktop:

    1. Add to your Claude Desktop config:
    "codex-cli": {
      "command": "npx",
      "args": ["-y", "@trishchuk/codex-mcp-tool"]
    }
    1. Import to Claude Code:
    claude mcp add-from-claude-desktop

    Configuration

    Register the MCP server with your MCP client:

    Add this configuration to your Claude Desktop config file:

    {
      "mcpServers": {
        "codex-cli": {
          "command": "npx",
          "args": ["-y", "@trishchuk/codex-mcp-tool"]
        }
      }
    }

    For Global Installation

    If you installed globally, use this configuration instead:

    {
      "mcpServers": {
        "codex-cli": {
          "command": "codex-mcp"
        }
      }
    }

    Configuration File Locations:

    • Claude Desktop:
      • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
      • Windows: %APPDATA%\Claude\claude_desktop_config.json
      • Linux: ~/.config/claude/claude_desktop_config.json

    After updating the configuration, restart your terminal session.

    Example Workflow

    • Natural language: "use codex to explain index.html", "understand this repo with @src", "look for vulnerabilities and suggest fixes"
    • Claude Code: Type /codex-cli to access the MCP server tools.

    Usage Examples

    Model Selection

    // Use the default gpt-5-codex model
    "explain the architecture of @src/"
    
    // Use gpt-5 for fast general purpose reasoning
    "use codex with model gpt-5 to analyze @config.json"
    
    // Use o3 for deep reasoning tasks
    "use codex with model o3 to analyze complex algorithm in @algorithm.py"
    
    // Use o4-mini for quick tasks
    "use codex with model o4-mini to add comments to @utils.js"
    
    // Use codex-1 for software engineering
    "use codex with model codex-1 to refactor @legacy-code.js"

    With File References (using @ syntax)

    • ask codex to analyze @src/main.ts and explain what it does
    • use codex to summarize @. the current directory
    • analyze @package.json and list dependencies

    General Questions (without files)

    • ask codex to explain div centering
    • ask codex about best practices for React development related to @src/components/Button.tsx

    Brainstorming & Ideation

    • brainstorm ways to optimize our CI/CD pipeline using SCAMPER method
    • use codex to brainstorm 10 innovative features for our app with feasibility analysis
    • ask codex to generate product ideas for the healthcare domain with design-thinking approach

    Codex Approvals & Sandbox

    Codex supports approval/sandbox modes. This server uses codex exec and can opt into --full-auto when sandbox=true.

    • use codex to create and run a Python script that processes data
    • ask codex to safely test @script.py and explain what it does

    Advanced Examples

    // Using ask-codex with specific model
    "ask codex using gpt-5 to refactor @utils/database.js for better performance"
    
    // Brainstorming with constraints
    "brainstorm solutions for reducing API latency with constraints: 'must use existing infrastructure, budget under $5k'"
    
    // Change mode for structured edits
    "use codex in change mode to update all console.log to use winston logger in @src/"

    Tools (for the AI)

    These tools are designed to be used by the AI assistant.

    Core Tools

    • ask-codex: Sends a prompt to Codex via codex exec.

      • Supports @ file references for including file content
      • Optional model parameter - available models:
        • gpt-5-codex (default, optimized for coding)
        • gpt-5 (general purpose, fast reasoning)
        • o3 (smartest, deep reasoning)
        • o4-mini (fast & efficient)
        • codex-1 (o3-based for software engineering)
        • codex-mini-latest (low-latency code Q&A)
        • gpt-4.1 (also available)
      • sandbox=true enables --full-auto mode
      • changeMode=true returns structured OLD/NEW edits
      • Supports approval policies and sandbox modes
    • brainstorm: Generate novel ideas with structured methodologies.

      • Multiple frameworks: divergent, convergent, SCAMPER, design-thinking, lateral
      • Domain-specific context (software, business, creative, research, product, marketing)
      • Supports same models as ask-codex (default: gpt-5-codex)
      • Configurable idea count and analysis depth
      • Includes feasibility, impact, and innovation scoring
      • Example: brainstorm prompt:"ways to improve code review process" domain:"software" methodology:"scamper"
    • ping: A simple test tool that echoes back a message.

      • Use to verify MCP connection is working
      • Example: /codex-cli:ping (MCP) "Hello from Codex MCP!"
    • help: Shows the Codex CLI help text and available commands.

    Advanced Tools

    • fetch-chunk: Retrieves cached chunks from changeMode responses.

      • Used for paginating large structured edit responses
      • Requires cacheKey and chunkIndex parameters
    • timeout-test: Test tool for timeout prevention.

      • Runs for a specified duration in milliseconds
      • Useful for testing long-running operations

    Slash Commands (for the User)

    You can use these commands directly in Claude Code's interface (compatibility with other clients has not been tested).

    • /analyze: Analyzes files or directories using Codex, or asks general questions.
      • prompt (required): The analysis prompt. Use @ syntax to include files (e.g., /analyze prompt:@src/ summarize this directory) or ask general questions (e.g., /analyze prompt:Please use a web search to find the latest news stories).
    • /sandbox: Safely tests code or scripts with Codex approval modes.
      • prompt (required): Code testing request (e.g., /sandbox prompt:Create and run a Python script that processes CSV data or /sandbox prompt:@script.py Test this script safely).
    • /help: Displays the Codex CLI help information.
    • /ping: Tests the connection to the server.
      • message (optional): A message to echo back.

    Acknowledgments

    This project was inspired by the excellent work from jamubc/gemini-mcp-tool. Special thanks to @jamubc for the original MCP server architecture and implementation patterns.

    Contributing

    Contributions are welcome! Please submit pull requests or report issues through GitHub.

    License

    This project is licensed under the MIT License. See the LICENSE file for details.

    Disclaimer: This is an unofficial, third-party tool and is not affiliated with, endorsed, or sponsored by OpenAI.