generate-data-mcp
This server provides an agent-friendly interface to Generate-Data.com, allowing you to:
Generate synthetic datasets: Create fake data rows from a field list, specifying output format (CSV, JSON, XML, Parquet, ZIP) and row count. Binary formats are base64-encoded. Limits depend on your tier (e.g., Free: 100 rows/10 cols; Premium: 100k rows/50 cols).
Design schemas with natural language: Propose a new dataset schema from a text description, or refine an existing one through a conversation (providing prior messages and the current schema).
List and configure field types: Browse all available data types grouped by category, and get detailed configuration options for any specific field type.
Manage projects (Premium tier): List your saved projects and generate all tables in a project, downloading the result in your chosen format.
Check API usage: View your current tier, daily call counts, and remaining limits.
All tools return a consistent success/error envelope for easy handling.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@generate-data-mcpPropose a schema for an e-commerce product catalog."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
generate-data-mcp
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.
Installation (30-second setup)
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):
{
"mcpServers": {
"generate-data": {
"command": "uvx",
"args": ["generate-data-mcp"],
"env": {
"GENERATE_DATA_API_KEY": "your-uuid-key-here"
}
}
}
}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.
# run once, ad hoc:
uvx generate-data-mcp
# or install it as a persistent CLI tool:
uv tool install generate-data-mcppip install generate-data-mcpFor local development against this repo directly:
git clone https://github.com/ns-3e/generate-data-mcp.git
cd generate-data-mcp
pip install -e ".[dev]"Verify it works
export GENERATE_DATA_API_KEY=your-key
generate-data-mcpFrom 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.
Bam — you're ready to generate data.
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.
Related MCP server: JustOneAPI MCP Server
Quick start
A typical session looks like this — the agent chains tools on its own, you just describe the outcome:
Discover what's possible.
gd_list_field_types— see every field type, grouped by category.Design a schema.
gd_design_schema(prompt="E-commerce customers with name, email, and signup date")— proposes afieldsarray from plain English.Generate the data.
gd_generate_dataset(fields=..., num_rows=10, format="csv")— returns the rows.Refine if needed. Call
gd_design_schemaagain, this time passingmessages(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.
Local development
{
"env": { "GENERATE_DATA_API_BASE_URL": "http://localhost:8000" }
}Point at a locally running Django backend instead of the hosted API.
Migrating from v1
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, nomessages/current_schema)refine_schema→gd_design_schema(passmessages+current_schematogether)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)
Reference
All 7 tools, split by tier.
Free tier
gd_generate_dataset — Generate synthetic dataset rows from a field list.
format:csv,json,xml,parquet, orzip(binary formats return base64-encoded).gd_list_field_types — List all available field types grouped by category. Takes no arguments.
gd_get_field_type_options — Get the configuration option schema for one field type.
field_typemust match^[a-z0-9_]+$.gd_design_schema — Design a dataset schema from natural language, or refine an existing one — one tool for both the first proposal and follow-up conversation turns.
gd_get_usage — Get current API key usage stats: calls today, tier, limits. Takes no arguments.
Premium tier
Requires a Premium API key — Free-tier keys get a tier_forbidden error.
gd_list_projects — List the user's Projects, paginated (
limit/offset, default 20/0).gd_generate_project — Generate all tables in a Project and download the result. Same format/binary rules as
gd_generate_dataset.
Tier limits (API key)
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.
Configuration
Variable | Required | Default |
| Yes | — |
| No |
|
Troubleshooting
Symptom | Fix |
| Set env var before starting the server |
HTTP 401 / | Invalid or deactivated key |
HTTP 429 / | Per-minute or daily cap hit; wait or upgrade tier |
HTTP 403 / | Free tier lacks access; upgrade plan |
|
|
| Value failed server-side validation before any request was sent — check spelling/type |
Development
git clone https://github.com/ns-3e/generate-data-mcp.git
cd generate-data-mcp
pip install -e ".[dev]"
pytest tests/ -vAPI docs
Docs live on generate-data.com. See this repo's tool docstrings (generate_data_mcp/server.py) for the authoritative request/response shapes.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityFmaintenanceA configurable MCP server that adapts any HTTP API into an MCP toolset with generic HTTP tools (GET, POST, PUT, DELETE) and pluggable authentication. Includes API discovery scripts and supports dynamic tool generation from OpenAPI specs or wordlist scans.

JustOneAPI MCP Serverofficial
Alicense-qualityAmaintenanceExposes JustOneAPI endpoints as MCP tools, returning raw upstream JSON without field parsing for maximum data fidelity.2620MIT- Alicense-qualityDmaintenanceProvides a standardized MCP interface for interacting with HTTP tools and services, enabling unified API access and management.MIT
- AlicenseAqualityCmaintenanceEnables MCP-capable clients to interact with OpenRefine's HTTP API for creating projects, applying operations, exporting CSV, and deleting projects.49MIT
Related MCP Connectors
Decodo MCP — wraps the Decodo Web Scraping API (decodo.com, formerly
Data.gov MCP — wraps Data.gov CKAN API (catalog.data.gov/api/3)
API Ninjas MCP — wraps the multi-endpoint API Ninjas data API (api-ninjas.com)
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ns-3e/generate-data-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server