/ 디렉터리 / 플레이그라운드 / csv-data-summarizer-claude-skill
● 커뮤니티 coffeefuelbump ⚡ 바로 사용

csv-data-summarizer-claude-skill

제작: coffeefuelbump · coffeefuelbump/csv-data-summarizer-claude-skill

Drop a CSV, get summary stats, missing-data flags, and quick charts — without writing pandas.

A focused Claude skill that auto-activates on CSV files: it profiles the columns (dtype, null %, uniques), prints summary statistics, flags missing-data patterns, and generates a few quick visualizations using pandas and matplotlib. Designed as a good first-look tool before deeper analysis.

왜 쓰나요

핵심 기능

라이브 데모

실제 사용 모습

csv-data-summarizer-claude-skill.replay ▶ 준비됨
0/0

설치

클라이언트 선택

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "csv-data-summarizer-claude-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/coffeefuelbump/csv-data-summarizer-claude-skill",
        "~/.claude/skills/csv-data-summarizer-claude-skill"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop → Settings → Developer → Edit Config 열기. 저장 후 앱 재시작.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "csv-data-summarizer-claude-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/coffeefuelbump/csv-data-summarizer-claude-skill",
        "~/.claude/skills/csv-data-summarizer-claude-skill"
      ],
      "_inferred": true
    }
  }
}

Cursor는 Claude Desktop과 동일한 mcpServers 스키마 사용. 프로젝트 설정이 전역보다 우선.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "csv-data-summarizer-claude-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/coffeefuelbump/csv-data-summarizer-claude-skill",
        "~/.claude/skills/csv-data-summarizer-claude-skill"
      ],
      "_inferred": true
    }
  }
}

Cline 사이드바의 MCP Servers 아이콘 클릭 후 "Edit Configuration" 선택.

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "csv-data-summarizer-claude-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/coffeefuelbump/csv-data-summarizer-claude-skill",
        "~/.claude/skills/csv-data-summarizer-claude-skill"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop과 같은 형식. Windsurf 재시작 후 적용.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "csv-data-summarizer-claude-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/coffeefuelbump/csv-data-summarizer-claude-skill",
        "~/.claude/skills/csv-data-summarizer-claude-skill"
      ]
    }
  ]
}

Continue는 맵이 아닌 서버 오브젝트 배열 사용.

~/.config/zed/settings.json
{
  "context_servers": {
    "csv-data-summarizer-claude-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/coffeefuelbump/csv-data-summarizer-claude-skill",
          "~/.claude/skills/csv-data-summarizer-claude-skill"
        ]
      }
    }
  }
}

context_servers에 추가. 저장 시 Zed가 핫 리로드.

claude mcp add csv-data-summarizer-claude-skill -- git clone https://github.com/coffeefuelbump/csv-data-summarizer-claude-skill ~/.claude/skills/csv-data-summarizer-claude-skill

한 줄 명령. claude mcp list로 확인, claude mcp remove로 제거.

사용 사례

실전 활용법: csv-data-summarizer-claude-skill

How to get a first look at a new CSV without writing pandas

👤 Analysts, PMs, anyone inheriting someone else's data ⏱ ~10 min beginner

언제 쓸까: You got handed a CSV and need to understand what's in it before doing anything else.

사전 조건
  • Python 3.10+ with pandas and matplotlib — pip install pandas matplotlib
  • Skill cloned — git clone https://github.com/coffeefuelbump/csv-data-summarizer-claude-skill ~/.claude/skills/csv-data-summarizer-claude-skill
흐름
  1. Point Claude at the file
    Summarize data/sales_2024.csv — columns, nulls, and basic stats.✓ 복사됨
    → Per-column dtype, null %, min/max or top values
  2. Ask for missing-data diagnosis
    Which columns have systematic nulls? Any row-level patterns?✓ 복사됨
    → Specific columns flagged, not vague 'some nulls'
  3. Request quick visuals
    Save histograms for all numeric columns into ./charts/.✓ 복사됨
    → PNG files on disk

결과: A one-page mental model of the dataset in under 5 minutes.

함정
  • Huge CSVs blow the token budget — Have Claude read a sample (nrows=10000) for exploration, run stats on the full file in Python
  • Dtype misinference (dates read as strings) — Tell Claude which columns are dates — pandas parse_dates helps
함께 쓰기: filesystem

Use the summarizer as a data-quality gate in a pipeline

👤 Data engineers validating incoming CSVs ⏱ ~30 min intermediate

언제 쓸까: You receive a daily CSV and want to flag anomalies before downstream steps.

흐름
  1. Baseline the expected shape
    Record the summary for last week's file as the baseline.✓ 복사됨
    → Baseline JSON saved
  2. Compare today against baseline
    Compare today's CSV to the baseline — flag null-rate shifts >5%, new/missing columns, dtype changes.✓ 복사됨
    → Diff report with specific anomalies
  3. Fail loudly if bad
    If any flags are critical, exit non-zero so CI fails.✓ 복사됨
    → Non-zero exit + readable reason

결과: Bad data caught before it pollutes the warehouse.

함정
  • Threshold too sensitive — noisy failures — Calibrate on 30 days of baselines before enforcing
함께 쓰기: github

조합

다른 MCP와 조합해 10배 효율

csv-data-summarizer-claude-skill + filesystem

Run against a directory of CSVs and save each report next to the file

For every CSV under data/, save a matching *_profile.md file summarizing it.✓ 복사됨
csv-data-summarizer-claude-skill + jupyter

Drop the profile into a notebook for further exploration

Take the profile and create a Jupyter notebook with the loaded DataFrame and starter cells.✓ 복사됨

도구

이 MCP가 노출하는 것

도구입력언제 호출비용
csv-profile path to CSV First step on any new CSV pandas runtime
missing-data-report profile After profiling 0
quick-charts profile + output dir When you want visuals alongside stats matplotlib runtime

비용 및 제한

운영 비용

API 쿼터
none
호출당 토큰
~2–5k tokens per CSV (plus the data sample Claude reads)
금액
free
Pass nrows and a narrowed column list — don't feed Claude the whole 50MB file

보안

권한, 시크릿, 파급범위

자격 증명 저장: none
데이터 외부 송신: none — local pandas only

문제 해결

자주 발생하는 오류와 해결

ModuleNotFoundError: pandas

pip install pandas matplotlib in the env where Claude Code runs scripts.

확인: python -c 'import pandas, matplotlib; print(pandas.__version__)'
UnicodeDecodeError on load

Tell Claude the encoding (e.g. 'encoding=latin-1') or normalize the file first.

확인: file -I path/to.csv
Charts look off for skewed data

Ask for log-scale or clipped histograms

대안

csv-data-summarizer-claude-skill 다른 것과 비교

대안언제 쓰나단점/장점
jupyterYou want full interactive analysis, not just a profileHeavier; needs a kernel
excelThe data is better in Excel (pivot tables, formulas)Harder to automate

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

🔍 400+ MCP 서버 및 Skills 전체 보기