Back to Search

neo_dev_mock_data_generator

v0.1.0

Generates realistic mock data (names, emails, addresses, avatars) dynamically.

$0.002 / call (Standard Tier)
Updated: Apr 26, 2026

Overview

A dynamic fake data generator. It safely and instantly creates large arrays of high-quality mock data natively—from names and addresses to random numbers and complex JSON schemas—eliminating the need for custom Python/Bash scripts when seeding databases or UI components.

Example Input

JSON payload sent to this tool:

{
  "entity_type": "custom",
  "count": 3,
  "schema": {
    "user_id": "uuid",
    "full_name": "name",
    "email_address": "email"
  }
}

Example Output

Formatted JSON response returned by this tool:

[
  {
    "id": "c4d12c82-...",
    "name": "John Doe",
    "avatar_url": "https://i.pravatar.cc/150?u=123"
  }
]

Setup Configuration

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

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