
MockHero
from dinosaur24
Generate realistic relational test data with 156 field types and 22 locales.
@mockherodev/mcp-server
MCP server for MockHero โ generate realistic test data from Claude Desktop, Cursor, Windsurf, and other AI agents.
Hosted agent endpoint
Agents that support remote Streamable HTTP MCP can connect directly to:
https://mockhero.dev/mcp/agentThe hosted endpoint includes cost estimation, loginless Polar checkout, checkout status, API key claiming, schema detection, templates, and authenticated data generation.
Tools
generate_test_data
Generate realistic test data from a structured schema or plain English description.
"Generate 50 users with German names and 200 orders linked to them"detect_schema
Convert SQL CREATE TABLE statements or JSON samples into MockHero's schema format.
list_field_types
List all 135+ supported field types with descriptions and parameters.
list_templates
List pre-built schema templates (e-commerce, blog, SaaS, social network).
generate_from_template
Generate data using a template โ no schema definition needed.
Use the ecommerce template at 2x scale with German localeGet your API key
Sign up free at mockhero.dev
claude mcp add mockhero -- env MOCKHERO_API_KEY=mh_live_xxx npx @mockherodev/mcp-serverBefore it works, you'll need: MOCKHERO_API_KEY
Setup
Claude Desktop
Add to ~/.claude/claude_desktop_config.json:
{
"mcpServers": {
"mockhero": {
"command": "npx",
"args": ["@mockherodev/mcp-server"],
"env": {
"MOCKHERO_API_KEY": "mh_live_your_key_here"
}
}
}
}Cursor
Add to .cursor/mcp.json in your project:
{
"mcpServers": {
"mockhero": {
"command": "npx",
"args": ["@mockherodev/mcp-server"],
"env": {
"MOCKHERO_API_KEY": "mh_live_your_key_here"
}
}
}
}Claude Code
claude mcp add mockhero -- env MOCKHERO_API_KEY=mh_live_xxx npx @mockherodev/mcp-serverNo common issues documented yet. If you hit a problem, the repository's GitHub Issues page is the best place to look.
Licensed under MITโ you can use, modify, and redistribute it under that license's terms.
View the full license file on GitHub โ