npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@missdeer/codex-mcp-rs

v0.1.7

Published

Rust implementation of MCP server that wraps the Codex CLI

Readme

@missdeer/codex-mcp-rs

License: GPL v3 MCP Compatible

NPM package for codex-mcp-rs - A high-performance Rust implementation of MCP (Model Context Protocol) server that wraps the Codex CLI.

Quick Start

Run directly with npx - no installation required:

npx @missdeer/codex-mcp-rs

This automatically installs the correct binary for your platform and launches the MCP server.

Installation

Option 1: Use via npx (Recommended)

npx @missdeer/codex-mcp-rs

npx handles everything automatically:

  1. Installs the platform-specific binary package
  2. Launches the MCP server on stdio transport

Add to Claude Code:

claude mcp add codex-rs -s user --transport stdio -- npx @missdeer/codex-mcp-rs

Option 2: Global Installation

npm install -g @missdeer/codex-mcp-rs

This installs the binary locally for faster startup on subsequent runs.

Usage with Claude Code

After installation, add to your Claude Code MCP configuration:

claude mcp add codex-rs -s user --transport stdio -- codex-mcp-rs

Or manually add to your ~/.claude/settings.json:

{
  "mcpServers": {
    "codex-rs": {
      "command": "codex-mcp-rs",
      "transport": "stdio"
    }
  }
}

Features

  • ✨ High-performance Rust implementation
  • 🚀 Low memory footprint
  • 🔒 Configurable sandbox policies
  • 🔄 Session management for multi-turn conversations
  • 🖼️ Image attachment support
  • ⚡ Fast async I/O with Tokio

Supported Platforms

  • Linux (x86_64, arm64)
  • macOS (x86_64, arm64)
  • Windows (x86_64, arm64)

Prerequisites

You must have the Codex CLI installed and configured on your system.

Tool Parameters

The server provides a codex tool with the following parameters:

  • PROMPT (required): Task instruction
  • cd (required): Working directory
  • sandbox: Security policy (read-only, workspace-write, danger-full-access)
  • SESSION_ID: Resume previous session
  • skip_git_repo_check: Allow running outside git repos
  • return_all_messages: Return full reasoning trace
  • image: Attach image files
  • model: Override Codex model
  • yolo: Disable all prompts
  • profile: Load config profile

Documentation

For detailed documentation, see the GitHub repository.

License

This project is dual-licensed:

Non-Commercial / Personal Use - GNU General Public License v3.0

Free for personal projects, educational purposes, open source projects, and non-commercial use. See LICENSE for the full GPLv3 license text.

Commercial / Workplace Use - Commercial License Required

If you use codex-mcp-rs in a commercial environment, workplace, or for any commercial purpose, you must obtain a commercial license.

This includes but is not limited to:

  • Using the software at work (any organization)
  • Integrating into commercial products or services
  • Using for client work or consulting
  • Offering as part of a SaaS/cloud service

Contact: [email protected] for commercial licensing inquiries.

See LICENSE-COMMERCIAL for more details.

Related Projects