Form To Json Schema

Seo REST API MCP

Returns a form schema object ({ formId, method, action, fields, submitText }) extracted from HTML form markup. Reads every input, select and textarea with a name or id: its type, label (from <label for>), placeholder, required flag, min/max, minlength/maxlength, pattern, select options and radio groups. Submit, button, reset and hidden inputs are skipped.

This page documents the HTTP endpoint POST /api/tools/form-to-json-schema/execute. See the MCP reference →

Call it over REST

POST https://api.findutils.com/api/tools/form-to-json-schema/execute · no API keys · 60 requests/min per IP

Execute — verified arguments

curl -X POST https://api.findutils.com/api/tools/form-to-json-schema/execute \
  -H "Content-Type: application/json" \
  -d '{
    "html": "<form><label for=\"email\">Email</label><input type=\"email\" id=\"email\" name=\"email\" required></form>"
  }'

Parameter schema for this endpoint

curl https://api.findutils.com/api/tools/form-to-json-schema

Interactive docs · OpenAPI 3.1 spec · All REST tools

Input schema

Argument Type Required Description
html string yes The HTML that contains the form (a whole page or just the <form> fragment).

Example arguments (verified)

{
  "html": "<form><label for=\"email\">Email</label><input type=\"email\" id=\"email\" name=\"email\" required></form>"
}

Also an MCP tool

Claude, Cursor, and any MCP client can call this tool as findutils:form_to_json_schema after one connect command.

Connect once

claude mcp add findutils --transport http https://mcp.findutils.com/
Open the MCP reference for Form To Json Schema →

More Seo tools