npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

sql-csv-chomper-mcp

v0.3.2

Published

MCP server for querying and editing CSV/TSV files with SQL, powered by DuckDB. Works with Claude Code, Copilot, and other MCP clients.

Readme

SQL CSV Chomper — MCP Server

Give your AI assistant direct SQL access to CSV files. Load, query, edit, and save — no scripts, no round-trips.

Powered by DuckDB. Works with Claude Code, GitHub Copilot, and any MCP-compatible client.

Want the full visual experience? Install the SQL CSV Chomper VS Code extension for a built-in SQL editor with column filtering, inline editing, virtual scrolling, and more.

Quick start

Claude Code

claude mcp add sql-csv-chomper --scope user -- npx -y sql-csv-chomper-mcp

That's it. Claude can now load and query your CSV files directly.

Claude Code (from VS Code)

  1. Install the SQL CSV Chomper extension
  2. Cmd+Shift+P"SQL CSV Chomper: Configure MCP for Claude CLI"
  3. Choose User (all projects) or Project (this workspace)

Other MCP clients

Run the server over stdio:

npx -y sql-csv-chomper-mcp

The server communicates via the Model Context Protocol over stdin/stdout.

Available tools

| Tool | Description | |------|-------------| | load_csv | Load a CSV/TSV file as a named table | | execute_sql | Run any DuckDB SQL query | | list_tables | List all loaded tables | | list_columns | Get column names and types for a table | | get_schema | Full schema for all tables | | update_rows | Update rows matching a WHERE condition | | insert_row | Insert a new row | | delete_rows | Delete rows matching a WHERE condition | | save_table | Export a table to CSV | | set_editor_sql | Push SQL into the VS Code editor (requires extension) | | run_editor_query | Set and execute SQL in the VS Code editor (requires extension) |

What can your AI do with this?

  • "Load sales.csv and show me the top 10 customers by revenue"
  • "Join orders.csv with products.csv and find items with no orders"
  • "Update all rows where status is 'pending' to 'active'"
  • "Save the filtered results to cleaned_data.csv"
  • "Show me a summary of null values across all columns"

DuckDB's full SQL is available — joins, window functions, CTEs, aggregations, regex, date math, and more.

How it works

  • npx downloads the package and installs DuckDB's native binary for your platform automatically
  • The server starts over stdio and speaks MCP
  • Files are loaded into an in-memory DuckDB instance
  • All queries run locally — nothing leaves your machine

Upgrading

claude mcp remove sql-csv-chomper
claude mcp add sql-csv-chomper --scope user -- npx -y sql-csv-chomper-mcp

Requirements

  • Node.js 18+

Related

License

MIT