Mock Json Generator

Data REST API MCP

Generate an array of mock JSON records from a list of field definitions. Field types include uuid, name, firstName, lastName, email, phone, address, city, country, zipCode, company, jobTitle, username, password, url, avatar, boolean, integer, float, price, date, datetime, paragraph, sentence, word, and color. Output is random on every call.

This page documents the HTTP endpoint POST /api/tools/mock-json-generator/execute. See the MCP reference →

Call it over REST

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

Execute — verified arguments

curl -X POST https://api.findutils.com/api/tools/mock-json-generator/execute \
  -H "Content-Type: application/json" \
  -d '{
    "fields": [
      {
        "name": "id",
        "type": "uuid"
      },
      {
        "name": "email",
        "type": "email"
      }
    ],
    "count": 2
  }'

Parameter schema for this endpoint

curl https://api.findutils.com/api/tools/mock-json-generator

Interactive docs · OpenAPI 3.1 spec · All REST tools

Input schema

Argument Type Required Description
fields array yes Field definitions: [{ name, type }]. type is one of: uuid, name, firstName, lastName, email, phone, address, city, country, zipCode, company, jobTitle, username, password, url, avatar, boolean, integer, float, price, date, datetime, paragraph, sentence, word, color.
count integer no Number of records to generate (1-1000). Default: 5. Default: 5.

Example arguments (verified)

{
  "fields": [
    {
      "name": "id",
      "type": "uuid"
    },
    {
      "name": "email",
      "type": "email"
    }
  ],
  "count": 2
}

Also an MCP tool

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

Connect once

claude mcp add findutils --transport http https://mcp.findutils.com/
Open the MCP reference for Mock Json Generator →

More Data tools