sseMITupdated 2mo ago
Relational fake data for AI editors โ locale-aware, foreign keys intact, one API key.
What can you do with BugiaData?
BugiaData MCP
Relational fake data for AI editors โ locale-aware, foreign keys intact, one API key.
BugiaData is a hosted remote MCP server. You do not clone or run this repository to use the tools; it exists for documentation and directory listings (cursor.store, MCP Registry). The server runs at bugiadata.com.
| MCP endpoint | https://mcp.bugiadata.com/sse |
| Auth | HTTP header X-API-Key (from your dashboard) |
| Discovery | bugiadata.com/mcp |
| Signup | bugiadata.com/signup (free tier: 10k tokens/month) |
Tools
| Tool | Description |
|---|---|
ping |
Health check; returns tier and key hint |
whoami |
Account tier and monthly token usage |
generate_data |
Single Faker type batch (e.g. name, email) โ mirrors REST POST /api/generate |
generate_relational_data |
Multi-table JSON with foreign_key columns โ mirrors REST POST /api/generate/schema |
Ask your agent in natural language; it should map the request to tool arguments before calling.
Quick setup
- Sign up (or sign in).
- Open Dashboard โ MCP and copy your API key.
- Add the config below for your client.
- Restart the client and try: "Use BugiaData to generate 5 users with pt_BR locale."
Cursor
Project: .cursor/mcp.json ยท Global: ~/.cursor/mcp.json (Windows: %USERPROFILE%\.cursor\mcp.json)
{
"mcpServers": {
"bugiadata": {
"url": "https://mcp.bugiadata.com/sse",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}
Claude Desktop
Edit claude_desktop_config.json (same mcpServers block as above).
See examples/claude-desktop.json.
Claude Code
Edit ~/.claude/mcp.json (same mcpServers block as above).
Windsurf
Edit ~/.codeium/windsurf/mcp_config.json (same mcpServers block as above).
See examples/windsurf-mcp.json.
Example prompts
- "Ping BugiaData and show my quota."
- "Generate 20 emails and names with locale en_US."
- "Generate users and orders: orders.author_id must reference users.id, locale pl_PL."
Relational schema shape
generate_relational_data expects a table map. Simplified example:
{
"users": {
"columns": {
"id": { "type": "uuid" },
"name": { "type": "name" },
"email": { "type": "email" }
}
},
"orders": {
"columns": {
"id": { "type": "uuid" },
"user_id": { "type": "foreign_key", "reference": "users.id" },
"total": { "type": "pydecimal", "left_digits": 3, "right_digits": 2 }
}
}
}
Full REST/MCP docs: bugiadata.com/docs
Directory listings
| Directory | URL |
|---|---|
| cursor.store | https://www.cursor.store/mcp/lgpoliveira/bugiadata-mcp |
| MCP Registry | https://registry.modelcontextprotocol.io/v0/servers?search=bugiadata (io.github.lgpoliveira/bugiadata-mcp v1.0.0) |
To enrich the cursor.store page (custom copy, install snippet, category), sign in with GitHub and claim the repo โ paste-ready fields are in docs/CURSOR_STORE_LISTING.md.
MCP Registry
This repo includes server.json for the official MCP Registry. Publishing is optional; see issue tracker on the private product repo.
Security
- Never commit real API keys. Use placeholders in config files.
- Keys are created and rotated in the BugiaData dashboard only.
- Generation consumes your monthly token quota (same as the REST API).
Links
- Product: https://bugiadata.com
- MCP landing: https://bugiadata.com/mcp
- JSON discovery: https://mcp.bugiadata.com/.well-known/mcp.json
License
MIT โ applies to this documentation repository only. The BugiaData application and MCP server implementation are proprietary.
Install
Add BugiaData to your client. Pick the one you use.
claude mcp add --transport sse bugiadata https://mcp.bugiadata.com/ssecodex mcp add bugiadata --url https://mcp.bugiadata.com/sse{
"mcpServers": {
"bugiadata": {
"url": "https://mcp.bugiadata.com/sse"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"bugiadata": {
"type": "sse",
"url": "https://mcp.bugiadata.com/sse"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"bugiadata": {
"url": "https://mcp.bugiadata.com/sse"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"bugiadata": {
"serverUrl": "https://mcp.bugiadata.com/sse"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
2 tools
BugiaData exposes 2 tools to a connected agent.
- generate_data
- Single Faker type batch (e.g. `name`, `email`) โ mirrors REST `POST /api/generate`
- generate_relational_data
- Multi-table JSON with `foreign_key` columns โ mirrors REST `POST /api/generate/schema`
Score
70 / 100
Good
- Documentation25/25
- Maintenance16/25
- Trust13/20
- Capability4/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 66 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 2 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Jun 27, 2026 |