Skip to content

Commit 5002538

Browse files
committed
Bump to 1.5.2 and fix dotenv outputs to stdout
Fix mcpb and symlink node_modules issue
1 parent 40d01f1 commit 5002538

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
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.1"
31+
LABEL org.opencontainers.image.version="1.5.2"
3232

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

index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import {
1616
DEFAULT_HACKMD_API_URL,
1717
} from "./utils/constants.js";
1818

19-
dotenv.config();
19+
dotenv.config({ quiet: true });
2020

2121
const app = express();
2222
const PORT = process.env.PORT || 8081;
@@ -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.1",
125+
version: "1.5.2",
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.1",
33
"name": "hackmd-mcp",
44
"display_name": "HackMD MCP",
5-
"version": "1.5.1",
5+
"version": "1.5.2",
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: 2 additions & 2 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.1",
8+
"version": "1.5.2",
99
"author": "yuna0x0 <yuna@yuna0x0.com>",
1010
"repository": {
1111
"type": "git",
@@ -29,7 +29,7 @@
2929
"dev:stdio": "tsx index.ts",
3030
"inspector": "pnpm run build && mcp-inspector node dist/index.js",
3131
"watch": "tsc --watch",
32-
"pack:mcpb": "mcpb pack"
32+
"pack:mcpb": "pnpm install --shamefully-hoist && mcpb pack"
3333
},
3434
"dependencies": {
3535
"@hackmd/api": "^2.5.0",

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.1",
10+
"version": "1.5.2",
1111
"packages": [
1212
{
1313
"registryType": "npm",
1414
"registryBaseUrl": "https://registry.npmjs.org",
1515
"identifier": "hackmd-mcp",
16-
"version": "1.5.1",
16+
"version": "1.5.2",
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.1",
42+
"version": "1.5.2",
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.1/hackmd-mcp-1.5.1.mcpb",
67-
"fileSha256": "a994d25dbf19fb2fd783c5daba402bf87fc5a1456e1a11acf6e729984a5524ae",
68-
"version": "1.5.1",
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",
6969
"transport": {
7070
"type": "stdio"
7171
},

0 commit comments

Comments
 (0)