markdownToHtml
Convert Markdown text into HTML using an MCP server with support for stdio and HTTP interfaces, enabling easy integration with tools like Cursor and other MCP clients.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| markdown | Yes | 要转换为HTML的Markdown文本 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"markdown": {
"description": "要转换为HTML的Markdown文本",
"type": "string"
}
},
"required": [
"markdown"
],
"type": "object"
}