
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
codex-cli-architect-mcp
Advanced tools
MCP server for OpenAI Codex CLI - Enable AI-powered coding assistance through Model Context Protocol
An MCP (Model Context Protocol) server implementation for OpenAI's Codex CLI, enabling AI-powered coding assistance through standardized tool interfaces.
Register the MCP server with Claude Code:
# Using NPM package
claude mcp add codex -- npx codex-cli-architect-mcp
# With custom model configuration
claude mcp add codex -e CODEX_MODEL=gpt-5 -- npx codex-cli-architect-mcp
# With OpenAI API key
claude mcp add codex -e OPENAI_API_KEY=your-api-key-here -- npx codex-cli-architect-mcp
Configure the MCP server in your client's settings file:
{
"mcpServers": {
"codex": {
"command": "npx",
"args": ["codex-cli-architect-mcp"],
"env": {
"OPENAI_API_KEY": "your-api-key-here",
"CODEX_MODEL": "gpt-5",
"CODEX_TIMEOUT": "300000"
}
}
}
}
The MCP server provides the following tools:
These tools are exposed through the MCP protocol and can be used by any MCP-compatible client.
Environment variables:
OPENAI_API_KEY - OpenAI API key for authentication (optional, uses ChatGPT login if not provided)CODEX_MODEL - Model to use (default: gpt-5)CODEX_TIMEOUT - Execution timeout in milliseconds (default: 300000)# Install dependencies
npm install
# Build
npm run build
# Development mode
npm run dev
# Run tests
npm test
MIT
FAQs
MCP server for OpenAI Codex CLI - Enable AI-powered coding assistance through Model Context Protocol
We found that codex-cli-architect-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.