Skip to main content

MCP server for comprehensive CSV file operations with pandas-based tools

Project description

CSV Editor - AI-Powered CSV Processing via MCP

Python MCP License FastMCP Pandas

Transform how AI assistants work with CSV data. CSV Editor is a high-performance MCP server that gives Claude, ChatGPT, and other AI assistants powerful data manipulation capabilities through simple commands.

🎯 Why CSV Editor?

The Problem

AI assistants struggle with complex data operations - they can read files but lack tools for filtering, transforming, analyzing, and validating CSV data efficiently.

The Solution

CSV Editor bridges this gap by providing AI assistants with 40+ specialized tools for CSV operations, turning them into powerful data analysts that can:

  • Clean messy datasets in seconds
  • Perform complex statistical analysis
  • Validate data quality automatically
  • Transform data with natural language commands
  • Track all changes with undo/redo capabilities

Key Differentiators

Feature CSV Editor Traditional Tools
AI Integration Native MCP protocol Manual operations
Auto-Save Automatic with strategies Manual save required
History Tracking Full undo/redo with snapshots Limited or none
Session Management Multi-user isolated sessions Single user
Data Validation Built-in quality scoring Separate tools needed
Performance Handles GB+ files with chunking Memory limitations

⚡ Quick Demo

# Your AI assistant can now do this:
"Load the sales data and remove duplicates"
"Filter for Q4 2024 transactions over $10,000"  
"Calculate correlation between price and quantity"
"Fill missing values with the median"
"Export as Excel with the analysis"

# All with automatic history tracking and undo capability!

🚀 Quick Start (2 minutes)

Fastest Installation (Recommended)

# Install uv if needed (one-time setup)
curl -LsSf https://astral.sh/uv/install.sh | sh

# Clone and run
git clone https://github.com/santoshray02/csv-editor.git
cd csv-editor
uv sync
uv run csv-editor

Configure Your AI Assistant

Claude Desktop (Click to expand)

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):

{
  "mcpServers": {
    "csv-editor": {
      "command": "uv",
      "args": ["tool", "run", "csv-editor"],
      "env": {
        "CSV_MAX_FILE_SIZE": "1073741824"
      }
    }
  }
}
Other Clients (Continue, Cline, Windsurf, Zed)

See MCP_CONFIG.md for detailed configuration.

💡 Real-World Use Cases

📊 Data Analyst Workflow

# Morning: Load yesterday's data
session = load_csv("daily_sales.csv")

# Clean: Remove duplicates and fix types
remove_duplicates(session_id)
change_column_type("date", "datetime")
fill_missing_values(strategy="median", columns=["revenue"])

# Analyze: Get insights
get_statistics(columns=["revenue", "quantity"])
detect_outliers(method="iqr", threshold=1.5)
get_correlation_matrix(min_correlation=0.5)

# Report: Export cleaned data
export_csv(format="excel", file_path="clean_sales.xlsx")

🏭 ETL Pipeline

# Extract from multiple sources
load_csv_from_url("https://api.example.com/data.csv")

# Transform with complex operations
filter_rows(conditions=[
    {"column": "status", "operator": "==", "value": "active"},
    {"column": "amount", "operator": ">", "value": 1000}
])
add_column(name="quarter", formula="Q{(month-1)//3 + 1}")
group_by_aggregate(group_by=["quarter"], aggregations={
    "amount": ["sum", "mean"],
    "customer_id": "count"
})

# Load to different formats
export_csv(format="parquet")  # For data warehouse
export_csv(format="json")     # For API

🔍 Data Quality Assurance

# Validate incoming data
validate_schema(schema={
    "customer_id": {"type": "integer", "required": True},
    "email": {"type": "string", "pattern": r"^[^@]+@[^@]+\.[^@]+$"},
    "age": {"type": "integer", "min": 0, "max": 120}
})

# Quality scoring
quality_report = check_data_quality()
# Returns: overall_score, missing_data%, duplicates, outliers

# Anomaly detection
anomalies = find_anomalies(methods=["statistical", "pattern"])

🎨 Core Features

Data Operations

  • Load & Export: CSV, JSON, Excel, Parquet, HTML, Markdown
  • Transform: Filter, sort, group, pivot, join
  • Clean: Remove duplicates, handle missing values, fix types
  • Calculate: Add computed columns, aggregations

Analysis Tools

  • Statistics: Descriptive stats, correlations, distributions
  • Outliers: IQR, Z-score, custom thresholds
  • Profiling: Complete data quality reports
  • Validation: Schema checking, quality scoring

Productivity Features

  • Auto-Save: Never lose work with configurable strategies
  • History: Full undo/redo with operation tracking
  • Sessions: Multi-user support with isolation
  • Performance: Stream processing for large files

📚 Available Tools

Complete Tool List (40+ tools)

I/O Operations

  • load_csv - Load from file
  • load_csv_from_url - Load from URL
  • load_csv_from_content - Load from string
  • export_csv - Export to various formats
  • get_session_info - Session details
  • list_sessions - Active sessions
  • close_session - Cleanup

Data Manipulation

  • filter_rows - Complex filtering
  • sort_data - Multi-column sort
  • select_columns - Column selection
  • rename_columns - Rename columns
  • add_column - Add computed columns
  • remove_columns - Remove columns
  • update_column - Update values
  • change_column_type - Type conversion
  • fill_missing_values - Handle nulls
  • remove_duplicates - Deduplicate

Analysis

  • get_statistics - Statistical summary
  • get_column_statistics - Column stats
  • get_correlation_matrix - Correlations
  • group_by_aggregate - Group operations
  • get_value_counts - Frequency counts
  • detect_outliers - Find outliers
  • profile_data - Data profiling

Validation

  • validate_schema - Schema validation
  • check_data_quality - Quality metrics
  • find_anomalies - Anomaly detection

Auto-Save & History

  • configure_auto_save - Setup auto-save
  • get_auto_save_status - Check status
  • undo / redo - Navigate history
  • get_history - View operations
  • restore_to_operation - Time travel

⚙️ Configuration

Environment Variables

Variable Default Description
CSV_MAX_FILE_SIZE 1GB Maximum file size
CSV_SESSION_TIMEOUT 3600s Session timeout
CSV_CHUNK_SIZE 10000 Processing chunk size
CSV_AUTO_SAVE true Enable auto-save

Auto-Save Strategies

CSV Editor automatically saves your work with configurable strategies:

  • Overwrite (default) - Update original file
  • Backup - Create timestamped backups
  • Versioned - Maintain version history
  • Custom - Save to specified location
# Configure auto-save
configure_auto_save(
    strategy="backup",
    backup_dir="/backups",
    max_backups=10
)

🛠️ Advanced Installation Options

Alternative Installation Methods

Using pip

git clone https://github.com/santoshray02/csv-editor.git
cd csv-editor
pip install -e .

Using pipx (Global)

pipx install git+https://github.com/santoshray02/csv-editor.git

From PyPI (Coming Soon)

uv pip install csv-editor
# or
pip install csv-editor

🧪 Development

Running Tests

uv run test           # Run tests
uv run test-cov       # With coverage
uv run all-checks     # Format, lint, type-check, test

Project Structure

csv-editor/
├── src/csv_editor/   # Core implementation
│   ├── tools/        # MCP tool implementations
│   ├── models/       # Data models
│   └── server.py     # MCP server
├── tests/            # Test suite
├── examples/         # Usage examples
└── docs/            # Documentation

🤝 Contributing

We welcome contributions! See CONTRIBUTING.md for guidelines.

Quick Contribution Guide

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes with tests
  4. Run uv run all-checks
  5. Submit a pull request

📈 Roadmap

  • SQL query interface
  • Real-time collaboration
  • Advanced visualizations
  • Machine learning integrations
  • Cloud storage support
  • Performance optimizations for 10GB+ files

💬 Support

📄 License

MIT License - see LICENSE file

🙏 Acknowledgments

Built with:

  • FastMCP - Fast Model Context Protocol
  • Pandas - Data manipulation
  • NumPy - Numerical computing

Ready to supercharge your AI's data capabilities? Get started in 2 minutes →

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

csv_mcp_server-1.0.0.tar.gz (1.8 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

csv_mcp_server-1.0.0-py3-none-any.whl (52.2 kB view details)

Uploaded Python 3

File details

Details for the file csv_mcp_server-1.0.0.tar.gz.

File metadata

  • Download URL: csv_mcp_server-1.0.0.tar.gz
  • Upload date:
  • Size: 1.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.9

File hashes

Hashes for csv_mcp_server-1.0.0.tar.gz
Algorithm Hash digest
SHA256 7978627ba5f3760fedd8ac711fdd43b2b365c2294a08783743f5f65b1c486265
MD5 05d15932a57f5818e541ef0a063eb9bc
BLAKE2b-256 7a61649474851e8a55fb1b431d2181248b4da36f5cf263b8d8ec04562a020e24

See more details on using hashes here.

File details

Details for the file csv_mcp_server-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: csv_mcp_server-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 52.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.9

File hashes

Hashes for csv_mcp_server-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f015dbff99c7cff337b294cca01ffe4e9dc4b1a5fa37d86a7f21d92004efbec6
MD5 fb9b88c9e1d2f586923169cbc7bb86eb
BLAKE2b-256 93df274555fb8b3e2bd366b0f814a94c2ee5f70ba9ad8bc2a5b7d35e52a383a0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page