# Csv To Bookmarks Html — REST API endpoint `csv-to-bookmarks-html`

Convert a CSV of links into a Netscape bookmarks.html file that Chrome, Firefox, Edge and Safari import. Columns are matched by name: url or href or link, title or name, folder or folder_path or path, and an optional add_date, so a sheet exported from a bookmark manager usually needs no configuration; column_map overrides any of them. A folder path builds nested folders, split on " / " when the value uses it and on "/" otherwise, so a folder genuinely called "AI/ML" survives. Every row needs an address; a row without one is skipped and listed by row number. A bare domain gains https://. Nothing is fetched and no link is checked.

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

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/csv-to-bookmarks-html/execute \
  -H "Content-Type: application/json" \
  -d '{
    "input": "folder_path,title,url\nWork / Clients,Example,https://example.com/\n,Root link,https://root.example/\n"
  }'

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

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `input` | string | yes | CSV text with a header row. |
| `delimiter` | string | no | Field separator. Default: detected from the header (comma, semicolon, tab or pipe). |
| `root_folder` | string | no | Folder every link is placed under, so an import does not scatter links across the bookmark bar. Default "Imported"; pass an empty string to place them at the top level. Default: `"Imported"`. |
| `column_map` | object | no | Header name per field when the automatic match is wrong: url, title, folder, add_date. |

Example arguments (verified):

```json
{
  "input": "folder_path,title,url\nWork / Clients,Example,https://example.com/\n,Root link,https://root.example/\n"
}
```

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:csv_to_bookmarks_html`. Full MCP reference: https://findutils.com/mcp/csv-to-bookmarks-html/

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