home / mcp / markdown to html mcp server

Markdown to HTML MCP Server

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

Installation
Add the following to your MCP client configuration file.

Configuration

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

This MCP server exposes a simple Markdown to HTML conversion tool you can call from any MCP client. It runs locally and turns Markdown content into HTML, making it easy to render formatted text in web pages, emails, or apps without writing your own parser.

How to use

You access this server from an MCP client by configuring a local stdio MCP connection or by pointing to a remote MCP if you host the server elsewhere. Use the provided tool to convert Markdown content by supplying the markdown content as input. The server returns the resulting HTML, which you can render in your UI or generate emails and web pages from.

How to install

Prerequisites: you need Node.js and npm installed on your machine.

# Install dependencies for the project
npm install

# Build the server if a build step exists
npm run build

# Start the server locally if a start script exists
npm run start

Notes

Debugging MCP servers runs over stdio. If you run into issues, install and use the MCP Inspector to access debugging tools and a browser-based interface.

Available tools

markdown_to_html

Convert Markdown to HTML by processing mdContent input and returning HTML output.