The HackMD MCP Server is a Model Context Protocol (MCP) server designed to integrate HackMD's note-taking platform with AI assistants. It enables AI assistants to perform various operations such as retrieving user information, managing notes, and interacting with team notes.
To install the HackMD MCP Server, clone the repository and install the dependencies:
git clone https://github.com/yuna0x0/hackmd-mcp.git
cd hackmd-mcp
bun install # or use npm, yarn, pnpm
.env
file by copying the example:shell
cp .env.example .env
.env
file and add your HackMD API token:HACKMD_API_TOKEN=your_api_token
You can also provide the API token directly when running the server:
HACKMD_API_TOKEN=your_api_token bun start
bun start # or use npm, yarn, pnpm
HACKMD_API_TOKEN=your_api_token bunx hackmd-mcp
Use the MCP Inspector to test and debug the HackMD MCP server:
bun run inspector # or use npm, yarn, pnpm
Open your browser to the provided URL (usually http://localhost:5173
) to access the MCP Inspector interface.
claude_desktop_config.json
:json
{
"mcpServers": {
"hackmd": {
"command": "npx",
"args": ["-y", "hackmd-mcp"],
"env": {
"HACKMD_API_TOKEN": "your_api_token"
}
}
}
}
Can you help me manage my HackMD notes?
Then use commands like:
Please list all my notes.
This MCP server requires your HackMD API token in the .env
file or as an environment variable. Keep this information secure and never commit it to version control.
This project is licensed under the MIT License - see the LICENSE file for details.
A Model Context Protocol server for integrating HackMD's note-taking platform with AI assistants.