poe-code 3.0.234 → 3.0.235
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/dist/index.js +5 -3
- package/dist/index.js.map +2 -2
- package/dist/metafile.json +1 -1
- package/dist/providers/poe-agent.js +2 -1
- package/dist/providers/poe-agent.js.map +2 -2
- package/package.json +1 -1
- package/packages/superintendent/dist/mcp.js +2 -1
- package/packages/superintendent/dist/mcp.js.map +2 -2
package/package.json
CHANGED
|
@@ -19462,7 +19462,8 @@ function createDeferredMCPServer(root, options) {
|
|
|
19462
19462
|
);
|
|
19463
19463
|
}
|
|
19464
19464
|
function createMCPServer(roots, options) {
|
|
19465
|
-
const
|
|
19465
|
+
const normalizedRoot = normalizeRoots(roots);
|
|
19466
|
+
const root = options.approvals === false ? normalizedRoot : mergeApprovalsGroup(normalizedRoot);
|
|
19466
19467
|
if (!hasMcpProxyGroups(root)) {
|
|
19467
19468
|
return createResolvedMCPServer(root, options);
|
|
19468
19469
|
}
|