Skip to content

Commit eccf1f1

Browse files
committed
Bump to 1.5.6 and upgrade dependencies
1 parent b90b4cb commit eccf1f1

File tree

6 files changed

+295
-213
lines changed

6 files changed

+295
-213
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.5"
31+
LABEL org.opencontainers.image.version="1.5.6"
3232

3333
LABEL org.opencontainers.image.vendor="yuna0x0"
3434
LABEL org.opencontainers.image.authors="yuna0x0 <yuna@yuna0x0.com>"

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.5",
125+
version: "1.5.6",
126126
});
127127

128128
// Initialize HackMD API client with config

manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"manifest_version": "0.2",
2+
"manifest_version": "0.3",
33
"name": "hackmd-mcp",
44
"display_name": "HackMD MCP",
5-
"version": "1.5.5",
5+
"version": "1.5.6",
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: 6 additions & 6 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.5",
8+
"version": "1.5.6",
99
"author": "yuna0x0 <yuna@yuna0x0.com>",
1010
"repository": {
1111
"type": "git",
@@ -33,17 +33,17 @@
3333
},
3434
"dependencies": {
3535
"@hackmd/api": "^2.5.0",
36-
"@modelcontextprotocol/sdk": "^1.20.1",
36+
"@modelcontextprotocol/sdk": "^1.21.0",
3737
"cors": "^2.8.5",
3838
"dotenv": "^17.2.3",
3939
"express": "^5.1.0",
4040
"zod": "^3.25.76"
4141
},
4242
"devDependencies": {
43-
"@anthropic-ai/mcpb": "^1.1.1",
44-
"@modelcontextprotocol/inspector": "^0.17.1",
43+
"@anthropic-ai/mcpb": "^2.0.1",
44+
"@modelcontextprotocol/inspector": "^0.17.2",
4545
"@types/cors": "^2.8.19",
46-
"@types/express": "^5.0.3",
46+
"@types/express": "^5.0.5",
4747
"cross-env": "^10.1.0",
4848
"shx": "^0.4.0",
4949
"tsx": "^4.20.6",
@@ -60,5 +60,5 @@
6060
"llm",
6161
"mcp-server"
6262
],
63-
"packageManager": "pnpm@10.18.3+sha512.bbd16e6d7286fd7e01f6b3c0b3c932cda2965c06a908328f74663f10a9aea51f1129eea615134bf992831b009eabe167ecb7008b597f40ff9bc75946aadfb08d"
63+
"packageManager": "pnpm@10.20.0+sha512.cf9998222162dd85864d0a8102e7892e7ba4ceadebbf5a31f9c2fce48dfce317a9c53b9f6464d1ef9042cba2e02ae02a9f7c143a2b438cd93c91840f0192b9dd"
6464
}

0 commit comments

Comments
 (0)