mcp-agents 0.5.6 → 0.5.7

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.
Files changed (3) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
  3. package/server.js +2 -2
package/README.md CHANGED
@@ -82,7 +82,7 @@ using `-c key=value` config overrides:
82
82
 
83
83
  | CLI Flag | Default | Codex config key |
84
84
  |----------|---------|-----------------|
85
- | `--model` | `gpt-5.3-codex` | `model` |
85
+ | `--model` | `gpt-5.4` | `model` |
86
86
  | `--model_reasoning_effort` | `high` | `model_reasoning_effort` |
87
87
 
88
88
  Hardcoded defaults: `sandbox_mode=read-only`, `approval_policy=never` (safe for MCP server mode).
@@ -126,7 +126,7 @@ Override codex defaults at server startup (not via `tools/call` arguments):
126
126
  "mcpServers": {
127
127
  "codex": {
128
128
  "command": "mcp-agents",
129
- "args": ["--provider", "codex", "--model", "gpt-5.3-codex", "--model_reasoning_effort", "medium"]
129
+ "args": ["--provider", "codex", "--model", "gpt-5.4", "--model_reasoning_effort", "medium"]
130
130
  }
131
131
  }
132
132
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-agents",
3
- "version": "0.5.6",
3
+ "version": "0.5.7",
4
4
  "description": "MCP server that wraps AI CLI tools (Claude Code, Gemini CLI, Codex CLI) for use by any MCP client",
5
5
  "type": "module",
6
6
  "bin": {
package/server.js CHANGED
@@ -122,7 +122,7 @@ Usage: mcp-agents [options]
122
122
 
123
123
  Options:
124
124
  --provider <name> CLI backend to use (${providers}) [default: codex]
125
- --model <model> Codex model [default: gpt-5.3-codex]
125
+ --model <model> Codex model [default: gpt-5.4]
126
126
  --model_reasoning_effort <e> Codex reasoning effort [default: high]
127
127
  --sandbox <bool> Gemini sandbox mode (true/false) [default: false]
128
128
  --timeout <seconds> Default timeout per call [default: 300]
@@ -311,7 +311,7 @@ function runCli(command, args, opts = {}) {
311
311
  function runCodexPassthrough({ model, modelReasoningEffort }) {
312
312
  const args = [
313
313
  "mcp-server",
314
- "-c", `model=${model || "gpt-5.3-codex"}`,
314
+ "-c", `model=${model || "gpt-5.4"}`,
315
315
  "-c", "sandbox_mode=read-only",
316
316
  "-c", "approval_policy=never",
317
317
  "-c", `model_reasoning_effort=${modelReasoningEffort || "high"}`,