Skip to content

Commit 7192414

Browse files
committed
Bump to 1.5.7 and upgrade dependencies
Upgrade package manager
1 parent 49ee185 commit 7192414

File tree

6 files changed

+142
-134
lines changed

6 files changed

+142
-134
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ FROM node:22-alpine AS release
2828

2929
LABEL org.opencontainers.image.title="HackMD MCP"
3030
LABEL org.opencontainers.image.description="A Model Context Protocol server for integrating HackMD's note-taking platform with AI assistants."
31-
LABEL org.opencontainers.image.version="1.5.6"
31+
LABEL org.opencontainers.image.version="1.5.7"
3232

3333
LABEL org.opencontainers.image.vendor="yuna0x0"
3434
LABEL org.opencontainers.image.authors="yuna0x0 <[email protected]>"

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ function parseConfig(req: Request): { config?: any; error?: any } {
122122
function createServer({ config }: { config: z.infer<typeof ConfigSchema> }) {
123123
const server = new McpServer({
124124
name: "hackmd-mcp",
125-
version: "1.5.6",
125+
version: "1.5.7",
126126
});
127127

128128
// Initialize HackMD API client with config

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": "0.3",
33
"name": "hackmd-mcp",
44
"display_name": "HackMD MCP",
5-
"version": "1.5.6",
5+
"version": "1.5.7",
66
"description": "A Model Context Protocol server for integrating HackMD's note-taking platform with AI assistants.",
77
"author": {
88
"name": "yuna0x0",

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"module": "index.ts",
66
"type": "module",
77
"license": "MIT",
8-
"version": "1.5.6",
8+
"version": "1.5.7",
99
"author": "yuna0x0 <[email protected]>",
1010
"repository": {
1111
"type": "git",
@@ -33,11 +33,11 @@
3333
},
3434
"dependencies": {
3535
"@hackmd/api": "^2.5.0",
36-
"@modelcontextprotocol/sdk": "^1.21.0",
36+
"@modelcontextprotocol/sdk": "^1.23.0",
3737
"cors": "^2.8.5",
3838
"dotenv": "^17.2.3",
3939
"express": "^5.1.0",
40-
"zod": "^3.25.76"
40+
"zod": "^4.1.13"
4141
},
4242
"devDependencies": {
4343
"@anthropic-ai/mcpb": "^2.0.1",
@@ -60,5 +60,5 @@
6060
"llm",
6161
"mcp-server"
6262
],
63-
"packageManager": "pnpm@10.20.0+sha512.cf9998222162dd85864d0a8102e7892e7ba4ceadebbf5a31f9c2fce48dfce317a9c53b9f6464d1ef9042cba2e02ae02a9f7c143a2b438cd93c91840f0192b9dd"
63+
"packageManager": "pnpm@10.24.0+sha512.01ff8ae71b4419903b65c60fb2dc9d34cf8bb6e06d03bde112ef38f7a34d6904c424ba66bea5cdcf12890230bf39f9580473140ed9c946fef328b6e5238a345a"
6464
}

0 commit comments

Comments
 (0)