mcp-agents 0.3.5 → 0.3.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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/server.js +3 -5
package/README.md CHANGED
@@ -60,7 +60,7 @@ with configurable flags:
60
60
 
61
61
  | CLI Flag | Default | Codex flag |
62
62
  |----------|---------|------------|
63
- | `--model` | `gpt-5.2-codex` | `-m <model>` |
63
+ | `--model` | `gpt-5.3-codex` | `-m <model>` |
64
64
  | `--model_reasoning_effort` | `high` | `-c model_reasoning_effort=<value>` |
65
65
 
66
66
  Hardcoded defaults: `-s read-only -a never` (safe for MCP server mode).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-agents",
3
- "version": "0.3.5",
3
+ "version": "0.3.6",
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
@@ -90,7 +90,7 @@ Usage: mcp-agents [options]
90
90
 
91
91
  Options:
92
92
  --provider <name> CLI backend to use (${providers}) [default: codex]
93
- --model <model> Model to use (codex) [default: gpt-5.2-codex]
93
+ --model <model> Model to use (codex) [default: gpt-5.3-codex]
94
94
  --model_reasoning_effort <e> Reasoning effort (codex) [default: high]
95
95
  --help, -h Show this help message
96
96
  --version, -v Show version number`);
@@ -206,7 +206,7 @@ function runCli(command, args, opts = {}) {
206
206
  function runCodexPassthrough({ model, modelReasoningEffort }) {
207
207
  const args = [
208
208
  "-m",
209
- model || "gpt-5.2-codex",
209
+ model || "gpt-5.3-codex",
210
210
  "-s",
211
211
  "read-only",
212
212
  "-a",
@@ -240,9 +240,7 @@ async function main() {
240
240
 
241
241
  if (!backend) {
242
242
  logErr(`[mcp-agents] Unknown provider: ${providerName}`);
243
- logErr(
244
- `[mcp-agents] Available: ${Object.keys(CLI_BACKENDS).join(", ")}`,
245
- );
243
+ logErr(`[mcp-agents] Available: ${Object.keys(CLI_BACKENDS).join(", ")}`);
246
244
  process.exitCode = 1;
247
245
  return;
248
246
  }