# Markdown To Html — REST API endpoint `markdown-to-html`

Minimal Markdown → HTML renderer with XSS-safe URL sanitization. Supports headings, bold/italic, strikethrough, code, links, images, lists, blockquotes, and horizontal rules.

- Category: text
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- REST endpoint: POST https://api.findutils.com/api/tools/markdown-to-html/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/api/markdown-to-html/
- Same tool on the other surface: https://findutils.com/mcp/markdown-to-html/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/markdown-to-html/execute \
  -H "Content-Type: application/json" \
  -d '{
    "markdown": "# Hi"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/markdown-to-html
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `markdown` | string | yes | Markdown source. |

Example arguments (verified):

```json
{
  "markdown": "# Hi"
}
```

OpenAPI 3.1 spec: https://findutils.com/api/openapi.json · Interactive docs: https://findutils.com/api/docs/

## Also an MCP tool

```bash
claude mcp add findutils --transport http https://mcp.findutils.com/
```

Then ask the client to call `findutils:markdown_to_html`. Full MCP reference: https://findutils.com/mcp/markdown-to-html/

---
Full catalog: GET https://api.findutils.com/api/tools · https://findutils.com/api/ · https://findutils.com/llms.txt
