File tree Expand file tree Collapse file tree 5 files changed +12
-12
lines changed
Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ FROM node:22-alpine AS release
2828
2929LABEL org.opencontainers.image.title="HackMD MCP"
3030LABEL 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
3333LABEL org.opencontainers.image.vendor="yuna0x0"
3434LABEL org.opencontainers.image.authors="yuna0x0 <yuna@yuna0x0.com>"
Original file line number Diff line number Diff 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
2121const app = express ( ) ;
2222const PORT = process . env . PORT || 8081 ;
@@ -122,7 +122,7 @@ function parseConfig(req: Request): { config?: any; error?: any } {
122122function 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
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change 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" ,
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" ,
Original file line number Diff line number Diff line change 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 },
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 },
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 },
You can’t perform that action at this time.
0 commit comments