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.
- package/README.md +3 -1
- package/package.json +1 -1
- 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`
|
|
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