LogoSTMCP
Download
hackmd-mcp

HackMD MCP Server

A Model Context Protocol server that enables LLM clients to interact with HackMD API for note management, team collaboration, user profiles, and reading history with dual transport support.

Tools

1. get_user_info

Get information about the authenticated user.

2. list_teams

List all teams accessible to the user.

3. get_history

Get user's reading history.

4. list_team_notes

List all notes in a team.

5. create_team_note

Create a new note in a team.

6. update_team_note

Update an existing note in a team.

7. delete_team_note

Delete a note in a team.

8. list_user_notes

List all notes owned by the user.

9. get_note

Get a note by its ID.

10. create_note

Create a new note.

11. update_note

Update an existing note.

12. delete_note

Delete a note.

Open Graph image for HackMD MCP Server

JSON Config

{
  "mcpServers": {
    "hackmd": {
      "command": "npx",
      "args": ["-y", "hackmd-mcp"],
      "env": {
        "HACKMD_API_TOKEN": "your_api_token"
      }
    }
  }
}

Information