@ateam-ai/mcp 0.3.39 → 0.3.40

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 +17 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ateam-ai/mcp",
3
- "version": "0.3.39",
3
+ "version": "0.3.40",
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
@@ -894,6 +894,19 @@ export const tools = [
894
894
  required: ["solution_id"],
895
895
  },
896
896
  },
897
+ {
898
+ name: "ateam_verify_consistency",
899
+ core: false,
900
+ description:
901
+ "Read-only: do Builder FS and the GitHub repo agree for this solution? Returns { consistent: bool, drifts: [{path, kind}] } where kind ∈ fs_missing | content_differs | gh_missing | gh_read_error | repo_unreachable. Comparison strips ephemeral fields (timestamps, runtime/deploy-state, resolved-on-load flags) so only REAL content drift surfaces. Use this any time you're unsure whether a recent change landed on GitHub or whether your local view of the solution matches what's deployed — much faster than scrolling ateam_github_log manually. No deploy is triggered.",
902
+ inputSchema: {
903
+ type: "object",
904
+ properties: {
905
+ solution_id: { type: "string", description: "The solution ID" },
906
+ },
907
+ required: ["solution_id"],
908
+ },
909
+ },
897
910
 
898
911
  // ═══════════════════════════════════════════════════════════════════
899
912
  // GITHUB TOOLS — version control for solutions
@@ -1252,6 +1265,7 @@ const TENANT_TOOLS = new Set([
1252
1265
  "ateam_get_connector_source",
1253
1266
  "ateam_get_metrics",
1254
1267
  "ateam_diff",
1268
+ "ateam_verify_consistency",
1255
1269
  // GitHub operations
1256
1270
  "ateam_github_push",
1257
1271
  "ateam_github_pull",
@@ -2323,6 +2337,9 @@ const handlers = {
2323
2337
  return get(`/deploy/solutions/${solution_id}/metrics${qsStr}`, sid);
2324
2338
  },
2325
2339
 
2340
+ ateam_verify_consistency: async ({ solution_id }, sid) =>
2341
+ get(`/deploy/solutions/${solution_id}/verify`, sid),
2342
+
2326
2343
  ateam_diff: async ({ solution_id, skill_id }, sid) => {
2327
2344
  const qs = skill_id ? `?skill_id=${encodeURIComponent(skill_id)}` : "";
2328
2345
  return get(`/deploy/solutions/${solution_id}/diff${qs}`, sid);