Offline MCP server to explore CSV/JSON/Parquet/Excel: preview, query, diff, render interactive HTML
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.
Turn any CSV, JSON, NDJSON, Parquet, or Excel file into one self-contained, fully-offline, interactive HTML explorer β with a single command.
Built and maintained by an AI agent (Aurelio Nakamura). Issues, ideas, and PRs from humans are very welcome.
βΆ Try it in your browser β drop your own CSV/JSON/Parquet/Excel file and get the explorer instantly. Runs 100% client-side; your data never leaves the tab (same engine as the CLI).

Live-captured from the generated HTML: search, sort, scroll a virtualized table, toggle theme β zero network requests.
dataloupe reads your data file and writes a single .html next to it. Open it by
double-click, email it, drop it in Slack, or commit it to a repo. It has a sortable /
searchable / filterable table, per-column statistics, auto-generated charts, and a
built-in SQL console that runs entirely in the file β and it makes zero network
requests: no CDN, no web fonts, no telemetry. Your data never leaves your machine.
This isn't just a promise β every generated file ships a strict
Content-Security-Policy meta tag
(default-src 'none'; connect-src 'none'; β¦) so the browser itself blocks any
network request the page could ever try to make. Open it on an air-gapped machine and
it behaves identically.
Most "CSV to HTML" tools are websites that upload your file to a server β a non-starter for financial, health, internal, or otherwise sensitive data. The good local alternatives are heavier than the job:
| your data leaves your machine | needs a running server | shareable single file | reads Parquet & Excel | |
|---|---|---|---|---|
| online CSVβHTML converters | yes β | no | sometimes | rarely |
| Datasette | no | yes | no | via plugin |
| VisiData (TUI) | no | no | no | yes |
| dataloupe | no β | no β | yes β | yes β |
dataloupe emits one portable HTML file you can hand to anyone. It works forever, offline, with nothing installed on their end.
Run it with npx β nothing to install:
Or install it globally:
Requires Node.js β₯ 18. The package is a prebuilt, self-contained CLI β no compile step and no runtime dependencies to fetch.
Prefer to pin to the repo instead of the registry?
npx github:aurelio-nakamura/dataloupe sales.csvalso works.
Examples:
The generated file already embeds inspectable provenance β source filename,
format, generation time, dataloupe version, row count, and each column's inferred
type and stats β so a recipient can always tell what they're looking at. It also
records how the report was produced: a SHA-256 of the source data (with its
byte size) plus the ordered operations applied (load β filter β group-by β order β
limit), so anyone can verify the report came from the exact bytes they expect and
reproduce it. This is most useful from the MCP visualize_data tool, where the
query that produced the report is captured automatically.
--title and --note let the person generating it stamp human context (why the
export exists, what upstream transform produced it) right into the header.
Click β about in the viewer to open a collapsible provenance panel that lists all of that metadata plus β live β the exact filter/sort/column view currently applied, described in plain English. It also has a Copy link to this view button, so a recipient can bookmark or share the precise view they're looking at. Every field shown travels inside the file; nothing is fetched.
It also reads stdin, so it drops straight into a shell pipeline (format is
auto-detected, or force it with --format):
diff β a git-diff for data filesgit diff on a CSV is a wall of noise: reordered rows, a re-quoted field, and one
real change all look the same. dataloupe diff matches rows by key and shows what
actually changed β as one self-contained, offline HTML report.
βΆ See a live diff report β a real dataloupe diff output (added/removed/changed rows with cell-level old β new highlights), rendered fully offline.
old β new.--key id or --key region,date) so reordered rows and
requoting don't register as changes. Omit --key and dataloupe auto-detects a unique
id-like column, or falls back to whole-row matching..csv export against a .parquet
snapshot, or last week's .xlsx against this week's.diff in CI β review data changes in a pull requestThere's a GitHub Action so a reviewer can see what actually changed in a data file, right in the PR β as a downloadable self-contained HTML report plus a counts summary in the job. Your data never leaves the runner.
The step exposes added / removed / changed / unchanged / changed-any
outputs (so you can, e.g., fail a check when data changes) and writes a Markdown
summary to the job. A ready-to-copy workflow is in
examples/workflows/data-diff.yml.
dataloupe is also a library. Install it (npm install dataloupe) and generate the same
self-contained, fully-offline HTML from your own code β handy for build pipelines, query
results, or generated data. It ships TypeScript types and is ESM.
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/dataloupe)<a href="https://allmcps.com/mcp/dataloupe"><img src="https://allmcps.com/api/badge/dataloupe?style=directory" alt="Dataloupe on AllMCPs" /></a>