@openai/codex-shell-tool-mcp 0.76.0-alpha.4 → 0.76.0-alpha.6

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/README.md CHANGED
@@ -65,10 +65,11 @@ This MCP server is designed to be used with [Codex](https://developers.openai.co
65
65
  }
66
66
  ```
67
67
 
68
- This capability means the MCP server honors notifications like the following to update the sandbox policy the MCP server uses when spawning Bash:
68
+ This capability means the MCP server honors requests like the following to update the sandbox policy the MCP server uses when spawning Bash:
69
69
 
70
70
  ```json
71
71
  {
72
+ "id": "req-42",
72
73
  "method": "codex/sandbox-state/update",
73
74
  "params": {
74
75
  "sandboxPolicy": {
@@ -82,7 +83,16 @@ This capability means the MCP server honors notifications like the following to
82
83
  }
83
84
  ```
84
85
 
85
- The Codex harness (used by the CLI and the VS Code extension) sends such notifications to MCP servers that declare the `codex/sandbox-state` capability.
86
+ Once the server has processed the update, it sends an empty response to acknowledge the request:
87
+
88
+ ```json
89
+ {
90
+ "id": "req-42",
91
+ "result": {}
92
+ }
93
+ ```
94
+
95
+ The Codex harness (used by the CLI and the VS Code extension) sends such requests to MCP servers that declare the `codex/sandbox-state` capability.
86
96
 
87
97
  ## Package Contents
88
98
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openai/codex-shell-tool-mcp",
3
- "version": "0.76.0-alpha.4",
3
+ "version": "0.76.0-alpha.6",
4
4
  "description": "Codex MCP server for the shell tool with patched Bash and exec wrappers.",
5
5
  "license": "Apache-2.0",
6
6
  "bin": {