@mukundakatta/markdown-mcp
v0.1.0
Published
MCP server: convert Markdown to HTML with frontmatter and inline-formula support.
Maintainers
Readme
markdown-mcp
MCP server: render Markdown to HTML and split YAML frontmatter from a doc. GFM features enabled by default (tables, fenced code, task lists).
Tools
to_html
{ "markdown": "# Hello\n\nThis is **bold**." }→ "<h1>Hello</h1>\n<p>This is <strong>bold</strong>.</p>\n"
extract_frontmatter
{ "text": "---\ntitle: Hello\ntags: [a, b]\n---\nbody here" }→
{
"meta": { "title": "Hello", "tags": ["a", "b"] },
"body": "body here"
}When no frontmatter is present, meta is null and body is the input verbatim.
Configure
{ "mcpServers": { "markdown": { "command": "npx", "args": ["-y", "@mukundakatta/markdown-mcp"] } } }License
MIT.
