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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "poe-code",
3
- "version": "3.0.234",
3
+ "version": "3.0.235",
4
4
  "description": "CLI tool to configure Poe API for developer workflows.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -19462,7 +19462,8 @@ function createDeferredMCPServer(root, options) {
19462
19462
  );
19463
19463
  }
19464
19464
  function createMCPServer(roots, options) {
19465
- const root = mergeApprovalsGroup(normalizeRoots(roots));
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
  }