Back to Search

neonia_dev_mock_data_generator

0.2.0

Generates deterministic synthetic records from presets or a JSON Schema subset.

$0.002 / call (Standard Tier)
Updated: Sep 21, 2026

Overview

Seeded synthetic fixtures with strict validation, deterministic UUIDs, and compact resource output for larger datasets.

Example Input

JSON payload sent to this tool:

{
  "count": 2,
  "entity_type": "custom",
  "return_format": "envelope",
  "seed": 42,
  "schema": {"type": "object", "properties": {"id": {"type": "string", "format": "uuid"}, "email": {"type": "string", "format": "email"}}}
}

Example Output

Formatted JSON response returned by this tool:

{
  "status": "success",
  "entity_type": "custom",
  "count": 2,
  "seed": 42,
  "return_format": "envelope",
  "data": []
}

Setup Configuration

Add the following configuration to your MCP general settings or mcp_config.json:

{
  "mcpServers": {
    "neonia": {
      "serverUrl": "https://mcp.neonia.io/mcp?tools=neonia_dev_mock_data_generator",
      "headers": {
        "Authorization": "Bearer API_KEY"
      }
    }
  }
}