mcp-agents 0.12.1 → 0.12.2

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 +3 -1
  2. package/package.json +1 -1
  3. package/server.js +2 -0
package/README.md CHANGED
@@ -88,7 +88,9 @@ or Gemini during bridge calls.
88
88
 
89
89
  Other startup defaults: `sandbox_mode=workspace-write`, `approval_policy=never`
90
90
  (both configurable via `--sandbox_mode` / `--approval_policy`, and steerable per
91
- call); `features.multi_agent=false` is fixed.
91
+ call); `features.multi_agent=false`, `features.apps=false`, and
92
+ `features.plugins=false` are fixed (the latter two keep ChatGPT app/plugin
93
+ skills — Figma, Gmail, Presentations, etc. — out of the bridged session context).
92
94
 
93
95
  Startup flags (`--model`, `--model_reasoning_effort`) set the model and effort for the native Codex MCP server. Per-call `model` and the model/effort keys inside a `config` override are stripped from `tools/call` before they reach Codex, so a client cannot override the pinned model/effort for a single call (`sandbox`, `cwd`, and `approval-policy` — top-level and the matching `config` keys — are intentionally left steerable per call). For example, this request:
94
96
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-agents",
3
- "version": "0.12.1",
3
+ "version": "0.12.2",
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
@@ -480,6 +480,8 @@ function buildCodexBridgeConfig({
480
480
  `sandbox_mode = ${toTomlString(sandboxMode)}`,
481
481
  "",
482
482
  "[features]",
483
+ "apps = false",
484
+ "plugins = false",
483
485
  "multi_agent = false",
484
486
  "",
485
487
  ].join("\n");