From c0fbddfab5efde650e2eb166408ce909dda1abcf Mon Sep 17 00:00:00 2001 From: yachi Date: Sun, 19 Oct 2025 19:01:47 +0100 Subject: [PATCH] fix: Downgrade express to 4.21.2 to match package-lock.json The MCP SDK v1.20.1 already includes Express 5.1.0 as a dependency, so we can use the stable Express 4.x version in our package.json without conflicts. This fixes the Docker build npm ci error where package.json and package-lock.json were out of sync. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index dca1b0b..79ea10d 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,7 @@ "dependencies": { "@modelcontextprotocol/sdk": "^1.20.1", "cors": "^2.8.5", - "express": "^5.0.1", + "express": "^4.21.2", "express-rate-limit": "^7.5.0", "rimraf": "^6.0.1", "spawn-rx": "^4.0.0",