# Schema Org Generator — REST API endpoint `schema-org-generator`

Generate Schema.org JSON-LD markup for 8 types (Organization, LocalBusiness, Person, Product, Event, Recipe, JobPosting, Course) and return the JSON-LD string, a ready <script> tag, the schema object, and the list of required fields that are still missing. Comma-separated values for sameAs and recipeIngredient become arrays.

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

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/schema-org-generator/execute \
  -H "Content-Type: application/json" \
  -d '{
    "schema_type": "Organization",
    "fields": {
      "name": "Acme",
      "url": "https://acme.com"
    }
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/schema-org-generator
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `schema_type` | string (Organization \| LocalBusiness \| Person \| Product \| Event \| Recipe \| JobPosting \| Course) | yes | The Schema.org type to generate. |
| `fields` | object | no | Flat map of field name to string value for the chosen type (for example { name, url, logo } for Organization). Unknown keys are ignored. JobPosting accepts datePosted (YYYY-MM-DD); default is today (UTC). |

Example arguments (verified):

```json
{
  "schema_type": "Organization",
  "fields": {
    "name": "Acme",
    "url": "https://acme.com"
  }
}
```

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:schema_org_generator`. Full MCP reference: https://findutils.com/mcp/schema-org-generator/

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