GnistAI GnistAI
Log in

Test User Generator

Generate realistic fake user profiles (name, email, phone, address, DOB) for testing — supports US, UK, NO, DE, FR locales.

Overview   |   MCP   |   REST API   |   OpenAPI   |   CLI   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 4 tools tools 4 4 type: calculator type type calculator calculator lifecycle: maintained lifecycle lifecycle maintained maintained Utilities

Data source: In-memory curated collection

MCP Endpoint (Streamable HTTP) https://context.gnist.ai/mcp/test-user/
Authentication

All requests require a Gnist-API-Key header (or api_key query parameter).

Free tier: 100 calls/day. Get your API key.

Tools (4)

generate_random_test_user

Generate a single random test user with fake name, email, phone, address, date of birth, and username.

All data is generated in-memory using curated name/address lists per locale.
Use list_test_user_locales() to see supported locale codes.

ParameterTypeRequiredDescription
localeanyoptionalLocale/nationality filter (US, UK, NO, DE, FR). Omit for random locale.
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "generate_random_test_user",
    "arguments": {}
  }
}
generate_test_user_batch

Generate a batch of random test users.

Returns multiple fake users, each with name, email, phone, address, date of birth, and username.

ParameterTypeRequiredDescription
countanyoptionalNumber of test users to generate (1-50, default 5).
localeanyoptionalLocale/nationality filter (US, UK, NO, DE, FR). Omit for random locale.
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "generate_test_user_batch",
    "arguments": {}
  }
}
list_test_user_locales

List all supported locales for test user generation.

Returns locale codes (e.g. US, UK, NO, DE, FR) that can be used to filter generated users.

JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "list_test_user_locales",
    "arguments": {}
  }
}
report_feedback

Report a bug, feature request, or general feedback for this data source.

Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.

Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.

ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "report_feedback",
    "arguments": {
      "feedback": "example"
    }
  }
}

Quick Start

Shell
curl -X POST "https://context.gnist.ai/mcp/test-user/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "report_feedback", "arguments": {"feedback": "example"}}}'
Python
import httpx

resp = httpx.post(
    "https://context.gnist.ai/mcp/test-user/",
    headers={"Gnist-API-Key": "YOUR_API_KEY", "Content-Type": "application/json"},
    json={
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "report_feedback",
    "arguments": {
      "feedback": "example"
    }
  }
},
)
print(resp.json())

Related Toolkits (Utilities)

Resources