Clean messy JSON rows in one MCP call: dedupe, flatten, fix emails, phones and URLs, return JSON or CSV.
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Documented (README)
- !No standard license detected
git clone https://github.com/Nero-Engine/dataset-cleaner-exporter-mcp{
"mcpServers": {
"dataset-cleaner-exporter-mcp": {
"command": "node",
"args": ["/path/to/dataset-cleaner-exporter-mcp/dist/index.js"]
}
}
}MCP Servers overview
# Dataset Cleaner & Exporter (Remote MCP Server)
**Deduplicate, flatten and clean messy JSON rows in a single tool call.** Hand it a list of rows from a scraper, a CRM export or an API, and it hands back clean, spreadsheet-ready rows (or CSV text) plus an exact account of what was merged and why.
Built for AI agents. No install, no API key, no signup. Connect by URL and call it.
```
https://dataset-cleaner-exporter.nerolabs.workers.dev/mcp
```
Free to use while in early access.
## What it does
One call runs a fixed pipeline, in this order:
1. **Expand** (optional) one array field, such as `offers` or `variants`, into one row per entry, repeating the other fields.
2. **Flatten** nested objects into columns: `address.city` becomes `address_city`. Arrays stay as one JSON-text cell.
3. **Clean** every value: trim text, lowercase valid emails, reduce phone numbers to digits (keeping a leading `+`), lowercase URL hosts and drop the trailing slash, and optionally strip HTML and turn `"42"` and `"true"` into real numbers and booleans. Blank text becomes `null`.
4. **Keep, remove or rename** columns.
5. **Deduplicate** on the fields you name, or the whole row: exact, normalized (ignores case and whitespace, the default) or fuzzy (near-duplicates). The most complete row survives.
Deterministic, no AI in the loop, nothing guessed. A value it cannot confidently read, such as `"not-an-email"` in an email column, is left exactly as it was. The summary tells you how many rows came in, how many duplicates were removed, how many rows went out, how full every column is, and warns you when something needs a look, for example rows with an empty dedup key, which are kept as they are rather than merged with each other.
## Tools
| Tool | What it does |
|---|---|
| `list_capabilities` | Lists the exact cleaning rules, dedup modes, keep strategies, step order and limits. Processes no data. |
| `clean_rows` | Runs the pipeline on the rows you pass and returns the clean rows (or CSV text) plus a summary. |
## Connect
**Claude Code**
```bash
claude mcp add --transport http dataset-cleaner-exporter https://dataset-cleaner-exporter.nerolabs.workers.dev/mcp
```
**Claude Desktop / claude.ai:** Settings, Connectors, Add custom connector, paste the URL above.
**Cursor, Windsurf, VS Code and other MCP clients**
```json
{
"mcpServers": {
"dataset-cleaner-exporter": {
"url": "https://dataset-cleaner-exporter.nerolabs.workers.dev/mcp"
}
}
}
```
## Example
Five messy lead rows go in, two of them duplicates with different casing and whitespace:
```json
{
"rows": [
{"company": " Acme Corp ", "email": "SALES@ACME.COM", "phone": "+1 (555) 123-4567", "website": "HTTPS://Acme.com/", "address": {"city": "Austin", "state": "TX"}},
{"company": "Acme Corp", "email": "sales@acme.com ", "phone": "555.123.4567", "website": "https://acme.com", "address": {"city": "Austin", "state": ""}},
{"company": "Globex Inc", "email": " Info@Globex.io", "phone": "+1 555 987 6543", "website": "https://globex.io/", "address": {"city": "Denver", "state": "CO"}, "notes": "<b>Hot</b> lead & ready"},
{"company": "globex inc", "email": "info@globex.io", "phone": "", "website": "", "address": {"city": "Denver", "state": "CO"}},
{"company": "Initech", "email": "hello@initech.com", "phone": "(555) 010-0199", "website": "http://www.INITECH.com/about/", "address": {"city": "Dallas", "state": "TX"}}
],
"dedupKeys": ["email"],
"stripHtml": true
}
```
Three clean rows come out. Each duplicate pair kept its more complete row:
```json
{
"rows": [
{"company": "Acme Corp", "email": "sales@acme.com", "phone": "+15551234567", "website": "https://acme.com", "address_city": "Austin", "address_state": "TX"},
{"company": "Globex Inc", "email": "info@globex.io", "phone": "+15559876543", "website": "https://globex.io", "address_city": "Denver", "address_state": "CO", "notes": "Hot lead & ready"},
{"company": "Initech", "email": "hello@initech.com", "phone": "5550100199", "website": "http://www.initech.com/about", "address_city": "Dallas", "address_state": "TX"}
],
"summary": {
"inputRowCount": 5,
"rowsAddedByExpansion": 0,
"duplicatesRemoved": 2,
"droppedByMaxItems": 0,
"outputRowCount": 3,
"dedupModeUsed": "normalized",
"columns": ["company", "email", "phone", "website", "address_city", "address_state", "notes"],
"fillRates": {"company": 1, "email": 1, "phone": 1, "website": 1, "address_city": 1, "address_state": 1, "notes": 0.333},
"warnings": []
}
}
```
Add `"outputFormat": "csv"` to get the same result back as CSV text, ready to save as a file.
## Limits
- Up to **150 rows per call**, counted after any array expansion. For bigger lists, split them across several calls. Anything larger returns a clear message rather than failing silently.
- **Fuzzy** deduplication compares every pair of rows, so it runs on up to 100 rows with at most 1,000 characters of key text in total. Name a short field in `dedupKeys`, such as a company name. Beyond that it falls back to normalized matching and says so in the warnings.
- Rows are passed inline as JSON. Output is JSON rows or CSV text; there is no Excel file.
## Privacy
Your rows are processed in memory and never stored. To see which tools get used, each call records the tool name, row counts, whether it succeeded, the client name your app reports, the country and a one-way hashed caller ID. Your data, your arguments and your IP address are never kept in that log.
## Also available
The same engine runs on the Apify Store as [Dataset Cleaner & Exporter](https://apify.com/nerolabs/dataset-cleaner-exporter), which also reads Apify datasets, CSV, Excel and JSON files by URL and Google Sheets, handles up to 100,000 records per run, exports real downloadable CSV and Excel files, appends to a named dataset that accumulates across scheduled runs, and pushes the result to a webhook when a run finishes.
Built by **Nero Labs**.
What people ask about dataset-cleaner-exporter-mcp
What is Nero-Engine/dataset-cleaner-exporter-mcp?
+
Nero-Engine/dataset-cleaner-exporter-mcp is mcp servers for the Claude AI ecosystem. Clean messy JSON rows in one MCP call: dedupe, flatten, fix emails, phones and URLs, return JSON or CSV. It has 0 GitHub stars and its last recorded update is dated 2026-09-13.
How do I install dataset-cleaner-exporter-mcp?
+
You can install dataset-cleaner-exporter-mcp by cloning the repository (https://github.com/Nero-Engine/dataset-cleaner-exporter-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is Nero-Engine/dataset-cleaner-exporter-mcp safe to use?
+
Our security agent has analyzed Nero-Engine/dataset-cleaner-exporter-mcp and assigned a Trust Score of 62/100 (tier: OK). See the full breakdown of passed checks and flags on this page.
Who maintains Nero-Engine/dataset-cleaner-exporter-mcp?
+
Nero-Engine/dataset-cleaner-exporter-mcp is maintained by Nero-Engine. The last recorded GitHub activity is dated 2026-09-13, with 0 open issues.
Are there alternatives to dataset-cleaner-exporter-mcp?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy dataset-cleaner-exporter-mcp to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/nero-engine-dataset-cleaner-exporter-mcp)<a href="https://claudewave.com/repo/nero-engine-dataset-cleaner-exporter-mcp"><img src="https://claudewave.com/api/badge/nero-engine-dataset-cleaner-exporter-mcp" alt="Featured on ClaudeWave: Nero-Engine/dataset-cleaner-exporter-mcp" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!
The fastest path to AI-powered full stack observability, even for lean teams.