Skip to main content
ClaudeWave
Nero-Engine avatar
Nero-Engine

dataset-cleaner-exporter-mcp

Ver en GitHub

Clean messy JSON rows in one MCP call: dedupe, flatten, fix emails, phones and URLs, return JSON or CSV.

MCP ServersRegistry oficial0 estrellas0 forksActualizado today
ClaudeWave Trust Score
62/100
· OK
Passed
  • Actively maintained (<30d)
  • Clear description
  • Documented (README)
Flags
  • !No standard license detected
Last scanned: 9/13/2026
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/Nero-Engine/dataset-cleaner-exporter-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "dataset-cleaner-exporter-mcp": {
      "command": "node",
      "args": ["/path/to/dataset-cleaner-exporter-mcp/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/Nero-Engine/dataset-cleaner-exporter-mcp and follow its README for install instructions.
Casos de uso

Resumen de MCP Servers

# 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 &amp; 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**.

Lo que la gente pregunta sobre dataset-cleaner-exporter-mcp

¿Qué es Nero-Engine/dataset-cleaner-exporter-mcp?

+

Nero-Engine/dataset-cleaner-exporter-mcp es mcp servers para el ecosistema de Claude AI. Clean messy JSON rows in one MCP call: dedupe, flatten, fix emails, phones and URLs, return JSON or CSV. Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-13.

¿Cómo se instala dataset-cleaner-exporter-mcp?

+

Puedes instalar dataset-cleaner-exporter-mcp clonando el repositorio (https://github.com/Nero-Engine/dataset-cleaner-exporter-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar Nero-Engine/dataset-cleaner-exporter-mcp?

+

Nuestro agente de seguridad ha analizado Nero-Engine/dataset-cleaner-exporter-mcp y le ha asignado un Trust Score de 62/100 (tier: OK). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene Nero-Engine/dataset-cleaner-exporter-mcp?

+

Nero-Engine/dataset-cleaner-exporter-mcp es mantenido por Nero-Engine. La última actividad registrada en GitHub es del 2026-09-13, con 0 issues abiertos.

¿Hay alternativas a dataset-cleaner-exporter-mcp?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega dataset-cleaner-exporter-mcp en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: Nero-Engine/dataset-cleaner-exporter-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/nero-engine-dataset-cleaner-exporter-mcp)](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>