hackmd-mcp
Version:
This is a Model Context Protocol (MCP) server for interacting with the [HackMD API](https://hackmd.io/@hackmd-api/developer-portal). It allows AI assistants to perform operations such as:
48 lines • 1.03 kB
JSON
{
"name": "hackmd-mcp",
"module": "index.ts",
"type": "module",
"license": "MIT",
"version": "1.3.1",
"author": "yuna0x0 <yuna@yuna0x0.com>",
"repository": {
"type": "git",
"url": "https://github.com/yuna0x0/hackmd-mcp.git"
},
"bin": {
"hackmd-mcp": "dist/index.js"
},
"files": [
"dist"
],
"dependencies": {
"@hackmd/api": "^2.5.0",
"@modelcontextprotocol/sdk": "^1.17.1",
"dotenv": "^17.2.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.16.2",
"rimraf": "^6.0.1",
"shx": "^0.4.0",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"api",
"ai",
"mcp",
"hackmd",
"llm",
"mcp-server"
],
"scripts": {
"clean": "rimraf 'dist/'",
"build": "pnpm run clean && tsc && shx chmod +x dist/*.js",
"start": "pnpm run build && node dist/index.js",
"inspector": "pnpm run build && mcp-inspector node dist/index.js",
"watch": "tsc --watch"
}
}