mcp-agents 0.6.5 → 0.6.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 +2 -2
- package/package.json +1 -1
- package/server.js +1 -1
package/README.md
CHANGED
|
@@ -85,7 +85,7 @@ or Gemini during bridge calls.
|
|
|
85
85
|
|
|
86
86
|
| CLI Flag | Default | Codex config key |
|
|
87
87
|
|----------|---------|-----------------|
|
|
88
|
-
| `--model` | `gpt-5.
|
|
88
|
+
| `--model` | `gpt-5.5` | `model` |
|
|
89
89
|
| `--model_reasoning_effort` | `xhigh` | `model_reasoning_effort` |
|
|
90
90
|
|
|
91
91
|
Hardcoded defaults: `sandbox_mode=read-only`, `approval_policy=never`,
|
|
@@ -141,7 +141,7 @@ Override codex defaults at server startup:
|
|
|
141
141
|
"mcpServers": {
|
|
142
142
|
"codex": {
|
|
143
143
|
"command": "mcp-agents",
|
|
144
|
-
"args": ["--provider", "codex", "--model", "gpt-5.
|
|
144
|
+
"args": ["--provider", "codex", "--model", "gpt-5.5", "--model_reasoning_effort", "medium"]
|
|
145
145
|
}
|
|
146
146
|
}
|
|
147
147
|
}
|
package/package.json
CHANGED
package/server.js
CHANGED
|
@@ -27,7 +27,7 @@ const VERSION = JSON.parse(
|
|
|
27
27
|
).version;
|
|
28
28
|
|
|
29
29
|
const DEFAULT_TIMEOUT_MS = 300_000;
|
|
30
|
-
const DEFAULT_CODEX_MODEL = "gpt-5.
|
|
30
|
+
const DEFAULT_CODEX_MODEL = "gpt-5.5";
|
|
31
31
|
const DEFAULT_CODEX_MODEL_REASONING_EFFORT = "xhigh";
|
|
32
32
|
const MAX_BUFFER_BYTES = 10 * 1024 * 1024;
|
|
33
33
|
const CLAUDE_EMPTY_OUTPUT_MAX_ATTEMPTS = 2;
|