# Rtf To Markdown — REST API endpoint `rtf-to-markdown`

Convert Rich Text Format (.rtf) source to Markdown. Handles paragraphs, bold, italic, strikethrough, bullet and numbered lists, hyperlinks, Unicode and code-page escapes. Images, tables, headers and footers are dropped.

- 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/rtf-to-markdown/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/api/rtf-to-markdown/
- Same tool on the other surface: https://findutils.com/mcp/rtf-to-markdown/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/rtf-to-markdown/execute \
  -H "Content-Type: application/json" \
  -d '{
    "rtf": "{\\rtf1\\ansi\\deff0{\\fonttbl{\\f0 Times;}}\\pard A \\b bold\\b0  line.\\par}"
  }'

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

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `rtf` | string | yes | RTF source, starting with {\rtf1. |

Example arguments (verified):

```json
{
  "rtf": "{\\rtf1\\ansi\\deff0{\\fonttbl{\\f0 Times;}}\\pard A \\b bold\\b0  line.\\par}"
}
```

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:rtf_to_markdown`. Full MCP reference: https://findutils.com/mcp/rtf-to-markdown/

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