MCP server for Generate-Data.com: dataset generation, AI schema design, Project management.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
An MCP server for Generate-Data.com β generate synthetic datasets, design schemas from natural language, and manage Projects, straight from your agent.
Thin HTTP wrapper over the Generate-Data.com API. No generation logic lives in this repo β it's a curated, agent-friendly interface onto the real thing: 7 tools, one consistent response shape, binary-safe output, and server-side validation on every input.
You need a Generate-Data.com API key first β create one in Settings β API Access on generate-data.com.
Add this to your MCP client config (Claude Desktop: claude_desktop_config.json; Cursor: .cursor/mcp.json):
uvx fetches and runs the latest published version on demand β no separate install step, nothing to update by hand. Restart your client and the 7 gd_* tools are available.
Do not commit a config file containing your real API key.
For local development against this repo directly:
From your MCP client, invoke gd_get_usage β it should return your tier and call counts. Then invoke gd_list_field_types β it should return the category map.
Ask your agent something like "generate 50 rows of fake e-commerce customers as CSV" and it will call gd_design_schema then gd_generate_dataset on its own.
A typical session looks like this β the agent chains tools on its own, you just describe the outcome:
gd_list_field_types β see every field type, grouped by category.gd_design_schema(prompt="E-commerce customers with name, email, and signup date") β proposes a fields array from plain English.gd_generate_dataset(fields=..., num_rows=10, format="csv") β returns the rows.gd_design_schema again, this time passing messages (the running conversation) + current_schema (the prior result) together β it refines instead of proposing fresh.Every tool returns the same envelope: {"ok": true, "summary": "...", "data": {...}} on success, or {"ok": false, "error": {"code": ..., "message": ...}} on failure β errors always tell you what to do next, never a raw stack trace.
Point at a locally running Django backend instead of the hosted API.
v2.0.0 renames every tool (breaking change). Old name β new name:
generate_data β gd_generate_datasetlist_field_types β gd_list_field_typesget_field_options β gd_get_field_type_optionspropose_schema β gd_design_schema (first call, no messages/current_schema)refine_schema β gd_design_schema (pass messages + current_schema together)get_api_usage β gd_get_usagelist_projects β gd_list_projects (now paginated: limit/offset)generate_project β gd_generate_project (binary formats now returned base64-encoded, not corrupted utf-8)All 7 tools, split by tier.
format: csv, json, xml, parquet, or zip (binary formats return base64-encoded).field_type must match ^[a-z0-9_]+$.Requires a Premium API key β Free-tier keys get a tier_forbidden error.
limit/offset, default 20/0).gd_generate_dataset.| Capability | Free | Premium |
|---|---|---|
| Max rows / request | 100 | 100,000 |
| Max columns | 10 | 50 |
| Formats | CSV | CSV, JSON, XML, Parquet |
| Daily API calls | 10 | 1,000 |
Limits are enforced by the Django API, not this MCP server.
| Variable | Required | Default |
|---|---|---|
GENERATE_DATA_API_KEY | Yes | β |
GENERATE_DATA_API_BASE_URL | No | https://api.generate-data.com |
| Symptom | Fix |
|---|---|
GENERATE_DATA_API_KEY is required | Set env var before starting the server |
HTTP 401 / auth_failed | Invalid or deactivated key |
HTTP 429 / rate_limited | Per-minute or daily cap hit; wait or upgrade tier |
HTTP 403 / tier_forbidden | Free tier lacks access; upgrade plan |
unsupported_format | format must be one of csv, json, xml, parquet, zip |
invalid_input on a field type or project ID | Value failed server-side validation before any request was sent β check spelling/type |
Docs live on generate-data.com. See this repo's tool docstrings (generate_data_mcp/server.py) for the authoritative request/response shapes.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/generate-data)<a href="https://allmcps.com/mcp/generate-data"><img src="https://allmcps.com/api/badge/generate-data?style=directory" alt="Generate Data on AllMCPs" /></a>