package.json•1.86 kB
{
"name": "hackmd-mcp",
"mcpName": "io.github.yuna0x0/hackmd-mcp",
"description": "A Model Context Protocol server for integrating HackMD's note-taking platform with AI assistants.",
"module": "index.ts",
"type": "module",
"license": "MIT",
"version": "1.5.3",
"author": "yuna0x0 <yuna@yuna0x0.com>",
"repository": {
"type": "git",
"url": "https://github.com/yuna0x0/hackmd-mcp.git"
},
"bin": {
"hackmd-mcp": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"clean": "rimraf 'dist/'",
"build": "pnpm run clean && tsc && shx chmod +x dist/*.js",
"prepare": "pnpm run build",
"start": "pnpm run start:http",
"start:http": "pnpm run build && TRANSPORT=http node dist/index.js",
"start:stdio": "pnpm run build && node dist/index.js",
"dev": "pnpm run dev:http",
"dev:http": "TRANSPORT=http tsx index.ts",
"dev:stdio": "tsx index.ts",
"inspector": "pnpm run build && mcp-inspector node dist/index.js",
"watch": "tsc --watch",
"pack:mcpb": "pnpm install --shamefully-hoist && mcpb pack"
},
"dependencies": {
"@hackmd/api": "^2.5.0",
"@modelcontextprotocol/sdk": "^1.18.2",
"cors": "^2.8.5",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@anthropic-ai/mcpb": "^1.1.1",
"@modelcontextprotocol/inspector": "^0.16.8",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"rimraf": "^6.0.1",
"shx": "^0.4.0",
"tsx": "^4.20.6",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"api",
"ai",
"mcp",
"hackmd",
"llm",
"mcp-server"
],
"packageManager": "pnpm@10.17.1+sha512.17c560fca4867ae9473a3899ad84a88334914f379be46d455cbf92e5cf4b39d34985d452d2583baf19967fa76cb5c17bc9e245529d0b98745721aa7200ecaf7a"
}