Skip to content

Commit 013445d

Browse files
authored
fix: update MCP SDK to 1.24.0 for security fixes (#33)
- Update @modelcontextprotocol/sdk from 1.20.2 to 1.24.0 - Replace deprecated 'description' property with 'title' in Server constructor - Resolves CVE-2025-66414 (HIGH severity DNS rebinding vulnerability) - Bump version to 0.6.4
1 parent 52f5b4b commit 013445d

File tree

4 files changed

+141
-24
lines changed

4 files changed

+141
-24
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.6.4] - 2025-12-05
11+
12+
### Security
13+
14+
- Updated @modelcontextprotocol/sdk from 1.20.2 to 1.24.0 to resolve CVE-2025-66414 (HIGH severity DNS rebinding vulnerability)
15+
- Updated express from 5.1.0 to 5.2.1 to resolve CVE-2025-13466 (MODERATE severity DoS vulnerability)
16+
- Updated body-parser from 2.2.0 to 2.2.1 to resolve CVE-2025-13466 (MODERATE severity DoS vulnerability)
17+
18+
### Changed
19+
20+
- Replaced `description` with `title` property in MCP Server constructor for SDK 1.24.0 compatibility
21+
1022
## [0.6.2] - 2025-11-21
1123

1224
### Fixed

package-lock.json

Lines changed: 126 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "deploy-mcp",
3-
"version": "0.6.3",
3+
"version": "0.6.4",
44
"description": "Universal deployment tracker for AI assistants",
55
"keywords": [
66
"mcp",
@@ -60,7 +60,7 @@
6060
"release:major": "npm version major && git push origin main --tags"
6161
},
6262
"dependencies": {
63-
"@modelcontextprotocol/sdk": "^1.11.2",
63+
"@modelcontextprotocol/sdk": "^1.24.0",
6464
"zod": "^4.0.14"
6565
},
6666
"devDependencies": {

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const server = new Server(
2626
{
2727
name: "deploy-mcp",
2828
version: "0.1.0",
29-
description: "Universal deployment tracker for AI assistants",
29+
title: "Deploy MCP - Universal Deployment Tracker",
3030
},
3131
{
3232
capabilities: {

0 commit comments

Comments
 (0)