markdown-to-html MCP Server

by fashionzzZ

2 stars
404 downloads
Not rated
GitHub

About

A Model Context Protocol (MCP) server that Convert Markdown to HTML.

Details

Author
fashionzzZ
GitHub stars
2
Downloads
404
Categories
Other

- Provides a single markdown_to_html tool
- Accepts Markdown content as required input
- Returns converted HTML output
- Built with Node.js and the MCP SDK
- Integrates easily with Claude Desktop via stdio
- Supports debugging via MCP Inspector

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name markdown-to-html MCP Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install dependencies with npm install and build with npm run build. Then configure your MCP client (e.g., Claude Desktop) to point to the built index.js file. Once connected, invoke the markdown_to_html tool with the required parameter mdContent.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "markdown-to-html mcp server": {
            "markdown-to-html": {
                "command": "node",
                "args": [
                    "/path/to/markdown-to-html/build/index.js"
                ]
            }
        }
    }
}

McpServers

{
    "markdown-to-html": {
        "command": "node",
        "args": [
            "/path/to/markdown-to-html/build/index.js"
        ]
    }
}

markdown-to-html MCP Server

A Model Context Protocol server that Convert Markdown to HTML.

Features

Tools

- markdown_to_html - Convert Markdown to HTML - Takes mdContent as required parameters

Development

Install dependencies:

npm install

Build the server:

npm run build

Installation

To use with Claude Desktop, add the server config:

On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "markdown-to-html": {
      "command": "node",
      "args": [
        "/path/to/markdown-to-html/build/index.js"
      ]
    }
  }
}

Debugging

Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the MCP Inspector, which is available as a package script:

npm run inspector

The Inspector will provide a URL to access debugging tools in your browser.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.