@wix/evalforge-evaluator 0.62.0 → 0.64.0

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.
@@ -11,3 +11,22 @@ import type { MCPEntity } from '@wix/evalforge-types';
11
11
  * @param mcps - MCP entities whose config is merged into mcpServers
12
12
  */
13
13
  export declare function writeMcpToFilesystem(cwd: string, mcps: MCPEntity[]): Promise<void>;
14
+ interface McpProbeResult {
15
+ name: string;
16
+ command: string;
17
+ args: string[];
18
+ exitCode: number | null;
19
+ signal: string | null;
20
+ stdout: string;
21
+ stderr: string;
22
+ durationMs: number;
23
+ }
24
+ /**
25
+ * Probe each stdio-based MCP server by spawning it briefly to capture startup
26
+ * errors. The process is killed after `probeMs` — we only care about early
27
+ * crashes / missing binaries / auth failures that happen in the first seconds.
28
+ *
29
+ * Results are returned so the caller can emit them as trace events.
30
+ */
31
+ export declare function probeMcpServers(mcps: MCPEntity[], probeMs?: number): Promise<McpProbeResult[]>;
32
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/evalforge-evaluator",
3
- "version": "0.62.0",
3
+ "version": "0.64.0",
4
4
  "description": "EvalForge Evaluator",
5
5
  "bin": "./build/index.js",
6
6
  "files": [
@@ -60,5 +60,5 @@
60
60
  "artifactId": "evalforge-evaluator"
61
61
  }
62
62
  },
63
- "falconPackageHash": "b83a01dfcc2c597494c8df928f883db31daf090c83c2005ba5ef4880"
63
+ "falconPackageHash": "cbbbbd238da518ce603172efd7352338b7a7617796cd83038b93a3be"
64
64
  }