@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/tools.js +4 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ateam-ai/mcp",
3
- "version": "0.3.9",
3
+ "version": "0.3.10",
4
4
  "mcpName": "io.github.ariekogan/ateam-mcp",
5
5
  "description": "A-Team MCP Server — build, validate, and deploy multi-agent solutions from any AI environment",
6
6
  "type": "module",
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", { solution, skills: effectiveSkills, connectors, mcp_store: effectiveMcpStore }, sid, { timeoutMs: 300_000, retries: 2 });
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 {