@kirrosh/zond 0.9.2 → 0.9.3

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kirrosh/zond",
3
- "version": "0.9.2",
3
+ "version": "0.9.3",
4
4
  "description": "API testing platform — define tests in YAML, run from CLI or WebUI, generate from OpenAPI specs",
5
5
  "license": "MIT",
6
6
  "module": "index.ts",
package/src/mcp/server.ts CHANGED
@@ -11,6 +11,7 @@ import { registerCiInitTool } from "./tools/ci-init.ts";
11
11
  import { registerSetWorkDirTool } from "./tools/set-work-dir.ts";
12
12
  import { registerDescribeEndpointTool } from "./tools/describe-endpoint.ts";
13
13
  import { registerGenerateAndSaveTool } from "./tools/generate-and-save.ts";
14
+ import { version } from "../../package.json";
14
15
 
15
16
  export interface McpServerOptions {
16
17
  dbPath?: string;
@@ -21,7 +22,7 @@ export async function startMcpServer(options: McpServerOptions = {}): Promise<vo
21
22
 
22
23
  const server = new McpServer({
23
24
  name: "zond",
24
- version: "0.8.0",
25
+ version,
25
26
  });
26
27
 
27
28
  // Register all tools