{ "name": "codex-mcp-bridge", "mcpName": "io.github.hampsterx/codex-mcp-bridge", "version": "0.9.1", "description": "MCP server that wraps Codex CLI for code execution, web search, and structured output", "author": "hampsterx", "license": "MIT", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "codex-mcp-bridge": "dist/index.js" }, "files": [ "dist", "prompts" ], "scripts": { "build": "tsc", "dev": "tsc --watch", "start": "node dist/index.js", "lint": "eslint src/ tests/", "typecheck": "tsc --noEmit", "test": "vitest run", "test:watch": "vitest", "test:integration": "CODEX_INTEGRATION=1 vitest run tests/integration/", "smoke": "node scripts/smoke-test.mjs", "check-changelog": "node scripts/check-changelog.mjs", "prepublishOnly": "node scripts/check-changelog.mjs && npm run build" }, "keywords": [ "mcp", "codex", "codex-cli", "openai", "claude-code", "ai-tools", "model-context-protocol" ], "repository": { "type": "git", "url": "git+https://github.com/hampsterx/codex-mcp-bridge.git" }, "bugs": { "url": "https://github.com/hampsterx/codex-mcp-bridge/issues" }, "homepage": "https://github.com/hampsterx/codex-mcp-bridge#readme", "engines": { "node": ">=18" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.12.1", "ajv": "^8.18.0", "smol-toml": "^1.6.1", "strip-ansi": "^7.1.0", "zod": "^3.24.0" }, "devDependencies": { "@types/node": "^22.0.0", "eslint": "^9.0.0", "typescript": "^5.7.0", "typescript-eslint": "^8.0.0", "vitest": "^3.0.0" } }