Clean messy CSVs: an LLM picks the steps, tested code does the work. Data untouched by the model.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Clean a messy CSV with an agentic workflow. An LLM decides which cleaning steps the data needs, and tested Python functions do the actual work. The model plans the cleanup, it never touches your data values, so nothing gets hallucinated or silently rewritten.
Works offline out of the box (no API key). Can be driven by an LLM, and other AI agents can call it as an MCP tool.
In one pass it fixed the headers, trimmed whitespace, parsed three different date formats to ISO,
turned β¬1.200,50 / $900 / β¬ 750,00 into numbers, standardized the country names, and dropped the
duplicate Alice row.
No API key needed. The default planner is a set of offline heuristics.
An "agentic workflow" is just software with a few parts:
The decision that makes it safe to trust:
The planner decides which tool runs on which column. The tools do the transformation. A language model is good at judgment ("this column looks like money") and bad at being a reliable calculator. So the LLM only ever picks operations from a fixed set. It never reads a value and writes back a "cleaned" one, which is where LLM data-cleaning usually goes wrong.
| Planner | What it is | Needs |
|---|---|---|
RuleBasedPlanner | Offline heuristics from a quick data profile. The default. | nothing |
LLMPlanner | Sends the profile + tool list to an LLM, gets back a JSON plan. | pip install "agentic-csv-cleaner[llm]" + ANTHROPIC_API_KEY |
Both return the same list of steps, so the loop is identical. You swap the brain, not the plumbing.
The log reports what each step actually did, including where a conversion could not produce a clean result (unparseable numbers/dates, unmapped categories), so a clean parse is distinguishable from a confident guess.
Other AI agents can call the cleaner as a tool, so they clean a CSV properly instead of reformatting it token by token in the prompt. Three steps:
1. Install it
2. Add it to your client's config (Claude Desktop's config lives at
~/Library/Application Support/Claude/claude_desktop_config.json on macOS, or
%APPDATA%\Claude\claude_desktop_config.json on Windows):
3. Restart Claude Desktop. The agent now has a clean_csv tool that takes CSV text and returns the
cleaned CSV plus a report of what it did.
The same server works in any MCP client, only the config differs. The command is
python -m cleaner.mcp_server.
Cursor β ~/.cursor/mcp.json (global) or .cursor/mcp.json (per project), hot-reloads:
VS Code / GitHub Copilot β .vscode/mcp.json. Note the different key (servers, not mcpServers)
and the required type. Tools only run in Copilot Agent mode:
Windsurf β ~/.codeium/windsurf/mcp_config.json (create it if missing):
Cline β add it from the extension's MCP settings panel in VS Code.
The tool doesn't just hand back tidy data, it tells you what each step actually did, including where it couldn't get a clean result, so you can tell a clean parse from a confident guess:
So instead of silently dropping a value or leaving a wrong category, it surfaces it, and you know exactly which cells to double-check.
cleaner/tools.py holds the transformations: snake_case_headers, strip_whitespace,
coerce_numeric, standardize_dates, standardize_categorical, drop_duplicate_rows.
Take standardize_dates. 2023-01-05 (year first, month in the middle) and 05/01/2023 (day first)
need opposite parsing rules, and one global setting corrupts one or the other, so the tool decides per
value. Mixed dates are genuinely ambiguous, and this handles them explicitly instead of guessing.
MIT.
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/data-cleaner-agent)<a href="https://allmcps.com/mcp/data-cleaner-agent"><img src="https://allmcps.com/api/badge/data-cleaner-agent?style=directory" alt="Data Cleaner Agent on AllMCPs" /></a>