@leo000001/codex-mcp 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +40 -0
- package/CODE_OF_CONDUCT.md +26 -0
- package/CONTRIBUTING.md +43 -0
- package/LICENSE +21 -0
- package/README.md +354 -0
- package/SECURITY.md +28 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +3168 -0
- package/dist/index.js.map +1 -0
- package/package.json +91 -0
package/package.json
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@leo000001/codex-mcp",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "MCP server that wraps OpenAI Codex app-server — start coding agents, poll their progress, and manage permissions from any MCP client",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"default": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"bin": {
|
|
16
|
+
"codex-mcp": "dist/index.js"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"CONTRIBUTING.md",
|
|
21
|
+
"SECURITY.md",
|
|
22
|
+
"CODE_OF_CONDUCT.md",
|
|
23
|
+
"LICENSE",
|
|
24
|
+
"README.md",
|
|
25
|
+
"CHANGELOG.md"
|
|
26
|
+
],
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "tsup",
|
|
29
|
+
"dev": "tsup --watch",
|
|
30
|
+
"start": "node dist/index.js",
|
|
31
|
+
"typecheck": "tsc --noEmit",
|
|
32
|
+
"test": "vitest run",
|
|
33
|
+
"test:watch": "vitest",
|
|
34
|
+
"prepublishOnly": "npm run build",
|
|
35
|
+
"check:stdio": "node scripts/check-stdio.mjs",
|
|
36
|
+
"check:stdio:strict": "node scripts/check-stdio.mjs --mode strict",
|
|
37
|
+
"smoke:mcp": "node scripts/mcp-smoke.mjs",
|
|
38
|
+
"lint": "eslint src/ tests/",
|
|
39
|
+
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
40
|
+
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
41
|
+
"prepare": "husky"
|
|
42
|
+
},
|
|
43
|
+
"keywords": [
|
|
44
|
+
"mcp",
|
|
45
|
+
"mcp-server",
|
|
46
|
+
"codex",
|
|
47
|
+
"openai",
|
|
48
|
+
"agent",
|
|
49
|
+
"coding-agent",
|
|
50
|
+
"model-context-protocol",
|
|
51
|
+
"stdio",
|
|
52
|
+
"json-rpc",
|
|
53
|
+
"approval-workflow"
|
|
54
|
+
],
|
|
55
|
+
"author": "xihuai18",
|
|
56
|
+
"license": "MIT",
|
|
57
|
+
"repository": {
|
|
58
|
+
"type": "git",
|
|
59
|
+
"url": "git+https://github.com/xihuai18/codex-mcp.git"
|
|
60
|
+
},
|
|
61
|
+
"homepage": "https://github.com/xihuai18/codex-mcp#readme",
|
|
62
|
+
"bugs": {
|
|
63
|
+
"url": "https://github.com/xihuai18/codex-mcp/issues"
|
|
64
|
+
},
|
|
65
|
+
"publishConfig": {
|
|
66
|
+
"access": "public"
|
|
67
|
+
},
|
|
68
|
+
"dependencies": {
|
|
69
|
+
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
70
|
+
"zod": "^4.3.6"
|
|
71
|
+
},
|
|
72
|
+
"devDependencies": {
|
|
73
|
+
"@eslint/js": "^9.39.2",
|
|
74
|
+
"@types/node": "^22.0.0",
|
|
75
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
76
|
+
"eslint": "^9.39.2",
|
|
77
|
+
"husky": "^9.1.7",
|
|
78
|
+
"lint-staged": "^16.2.7",
|
|
79
|
+
"prettier": "^3.8.1",
|
|
80
|
+
"tsup": "^8.5.1",
|
|
81
|
+
"typescript": "^5.9.3",
|
|
82
|
+
"typescript-eslint": "^8.55.0",
|
|
83
|
+
"vitest": "^4.0.18"
|
|
84
|
+
},
|
|
85
|
+
"engines": {
|
|
86
|
+
"node": ">=18.0.0"
|
|
87
|
+
},
|
|
88
|
+
"lint-staged": {
|
|
89
|
+
"*.ts": "prettier --write"
|
|
90
|
+
}
|
|
91
|
+
}
|