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
|
@@ -47570,7 +47570,8 @@ function resolveMCPVersion(version) {
|
|
|
47570
47570
|
}
|
|
47571
47571
|
async function runMCP(roots, options) {
|
|
47572
47572
|
enableSourceMaps();
|
|
47573
|
-
const
|
|
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();
|