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.
@@ -47570,7 +47570,8 @@ function resolveMCPVersion(version) {
47570
47570
  }
47571
47571
  async function runMCP(roots, options) {
47572
47572
  enableSourceMaps();
47573
- const root = mergeApprovalsGroup(normalizeRoots(roots));
47573
+ const normalizedRoot = normalizeRoots(roots);
47574
+ const root = options.approvals === false ? normalizedRoot : mergeApprovalsGroup(normalizedRoot);
47574
47575
  await resolveMcpProxies(root, { projectRoot: options.projectRoot });
47575
47576
  const server = createResolvedMCPServer(root, options);
47576
47577
  await server.listen();