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

mcp-table-parser

v1.0.0

Published

MCP server for parsing and analyzing tabular data from clipboard

Downloads

9

Readme

MCP Table Parser

A Model Context Protocol (MCP) server for parsing and analyzing tabular data from clipboard. Transform raw data into AI-ready structured format instantly.

Features

  • Auto-detect delimiters - CSV, TSV, pipe-separated data
  • Smart type inference - Numbers, dates, strings automatically recognized
  • Data summary - Row/column counts, null value analysis
  • Sample preview - First 3 rows for immediate understanding
  • Pure input/output - No file handling, clipboard-to-insight pipeline

Installation

npm install -g mcp-table-parser

Usage

1. Configure Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "table-parser": {
      "command": "mcp-table-parser"
    }
  }
}

2. Use with Claude

Simply paste any table data and ask for analysis:

Help me analyze this sales data:
Product,Quantity,Price,Date
Apple,120,5.5,2024-01-15
Banana,85,3.2,2024-01-16
Orange,95,4.8,2024-01-17

Claude will automatically:

  • Parse the data structure
  • Identify column types
  • Provide data summary
  • Enable instant analysis

Supported Data Types

  • Numbers - Automatically detected and validated
  • Dates - Multiple format support
  • Strings - Text and categorical data
  • Mixed data - Heterogeneous columns handled gracefully

Supported Delimiters

  • Comma (,) - CSV files
  • Tab (\t) - TSV files, Excel copy-paste
  • Pipe (|) - Custom format data
  • Auto-detection - Let the server figure it out

Example Outputs

Input

Name,Age,City,Join Date
Alice,28,New York,2023-01-15
Bob,32,San Francisco,2023-02-20
Charlie,25,Chicago,2023-03-10

Output

{
  "success": true,
  "delimiter": ",",
  "summary": {
    "rowCount": 3,
    "columnCount": 4,
    "columns": [
      {"name": "Name", "type": "string", "nullCount": 0},
      {"name": "Age", "type": "number", "nullCount": 0},
      {"name": "City", "type": "string", "nullCount": 0},
      {"name": "Join Date", "type": "date", "nullCount": 0}
    ],
    "sampleData": [...]
  },
  "data": [...]
}

API

Tools

parse_table_data

Pastes and analyzes tabular data.

Parameters:

  • data_text (string, required): The raw table data
  • delimiter (string, optional): Specify delimiter or use 'auto' for detection

Returns:

  • Structured data with type inference and summary statistics

License

MIT License - see LICENSE file for details.

Contributing

Pull requests welcome! Please ensure:

  • Code passes TypeScript compilation
  • Tests cover new functionality
  • Documentation is updated

Support

Issues and feature requests: GitHub Issues