Skip to content

Commit c00a331

Browse files
committed
Bump to 1.5.3 and upgrade mcpb manifest version
1 parent ff23a53 commit c00a331

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
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.2"
31+
LABEL org.opencontainers.image.version="1.5.3"
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.2",
125+
version: "1.5.3",
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.1",
2+
"manifest_version": "0.2",
33
"name": "hackmd-mcp",
44
"display_name": "HackMD MCP",
5-
"version": "1.5.2",
5+
"version": "1.5.3",
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: 1 addition & 1 deletion
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.2",
8+
"version": "1.5.3",
99
"author": "yuna0x0 <yuna@yuna0x0.com>",
1010
"repository": {
1111
"type": "git",

server.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
"url": "https://github.com/yuna0x0/hackmd-mcp",
88
"source": "github"
99
},
10-
"version": "1.5.2",
10+
"version": "1.5.3",
1111
"packages": [
1212
{
1313
"registryType": "npm",
1414
"registryBaseUrl": "https://registry.npmjs.org",
1515
"identifier": "hackmd-mcp",
16-
"version": "1.5.2",
16+
"version": "1.5.3",
1717
"transport": {
1818
"type": "stdio"
1919
},
@@ -39,7 +39,7 @@
3939
"registryType": "oci",
4040
"registryBaseUrl": "https://ghcr.io",
4141
"identifier": "yuna0x0/hackmd-mcp",
42-
"version": "1.5.2",
42+
"version": "1.5.3",
4343
"transport": {
4444
"type": "stdio"
4545
},
@@ -63,9 +63,9 @@
6363
},
6464
{
6565
"registryType": "mcpb",
66-
"identifier": "https://github.com/yuna0x0/hackmd-mcp/releases/download/v1.5.2/hackmd-mcp-1.5.2.mcpb",
67-
"fileSha256": "85c9f9930596291f3ba9e0e5d3241cbeac4d5bcc6832845bd7c05348cc5511d5",
68-
"version": "1.5.2",
66+
"identifier": "https://github.com/yuna0x0/hackmd-mcp/releases/download/v1.5.3/hackmd-mcp-1.5.3.mcpb",
67+
"fileSha256": "9b216bf4c286ccc1b70f411f0b23777efbae0ab7239b8c99170cfac3b706721a",
68+
"version": "1.5.3",
6969
"transport": {
7070
"type": "stdio"
7171
},

0 commit comments

Comments
 (0)