From b8d4487a0398c6947a20d0899cb886b01304d9e6 Mon Sep 17 00:00:00 2001 From: Mark Harnett <2389468+mharnett@users.noreply.github.com> Date: Sun, 5 Jul 2026 11:13:38 -0700 Subject: [PATCH] fix: declare zod as a runtime dependency zod is imported in src (src/tools/{card,additional,dashboard,table,database}-tools.ts all `import { z } from "zod"`) but is not listed in any dependency bucket of package.json. It currently resolves only transitively (e.g. via fastmcp), so a fresh end-user install could fail to resolve zod if that transitive path changes. Declare it explicitly in dependencies. --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index a498bed..84a4a5c 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,8 @@ "axios": "^1.8.2", "cors": "^2.8.5", "express": "^5.1.0", - "fastmcp": "^3.14.5" + "fastmcp": "^3.14.5", + "zod": "^3.25.76" }, "devDependencies": { "@types/node": "^20.17.22",