@ateam-ai/mcp 0.3.9 → 0.3.10
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 +1 -1
- package/src/tools.js +4 -1
package/package.json
CHANGED
package/src/tools.js
CHANGED
|
@@ -1455,7 +1455,10 @@ const handlers = {
|
|
|
1455
1455
|
// Phase 2: Deploy
|
|
1456
1456
|
let deploy;
|
|
1457
1457
|
try {
|
|
1458
|
-
deploy = await post("/deploy/solution", {
|
|
1458
|
+
deploy = await post("/deploy/solution", {
|
|
1459
|
+
solution, skills: effectiveSkills, connectors, mcp_store: effectiveMcpStore,
|
|
1460
|
+
...(github && { skip_github_push: true }),
|
|
1461
|
+
}, sid, { timeoutMs: 300_000, retries: 2 });
|
|
1459
1462
|
phases.push({ phase: "deploy", status: deploy.ok ? "done" : "failed" });
|
|
1460
1463
|
} catch (err) {
|
|
1461
1464
|
return {
|