@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 +1 -1
- package/src/mcp/server.ts +2 -1
package/package.json
CHANGED
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
|
|
25
|
+
version,
|
|
25
26
|
});
|
|
26
27
|
|
|
27
28
|
// Register all tools
|