# Json To Bootstrap Form — REST API endpoint `json-to-bootstrap-form`

Returns Bootstrap 5 form markup generated from a JSON form schema ({ formId?, layout?, method?, action?, fields: [...], submitText? }). Supports vertical, horizontal (row/col-md-6) and floating-label layouts with form-control, form-select and form-check classes.

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

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/json-to-bootstrap-form/execute \
  -H "Content-Type: application/json" \
  -d '{
    "schema": "{\"formId\":\"f\",\"fields\":[{\"name\":\"email\",\"type\":\"email\",\"label\":\"Email\",\"required\":true}]}"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/json-to-bootstrap-form
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `schema` | string | yes | The form schema as JSON text (a JSON object is also accepted). Must contain a "fields" array; each field has name, type and label. layout is "vertical" (default), "horizontal" or "floating". |

Example arguments (verified):

```json
{
  "schema": "{\"formId\":\"f\",\"fields\":[{\"name\":\"email\",\"type\":\"email\",\"label\":\"Email\",\"required\":true}]}"
}
```

Decoded `schema` argument (readability only — send it as a string):

```json
{
  "formId": "f",
  "fields": [
    {
      "name": "email",
      "type": "email",
      "label": "Email",
      "required": true
    }
  ]
}
```

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:json_to_bootstrap_form`. Full MCP reference: https://findutils.com/mcp/json-to-bootstrap-form/

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