mcp-registry/mcp-server-data-exploration

    ==================
      
       /// MCP ///
      /// MCP ///
        
    ==================
        
    [server:online]
    [protocol:ready]

mcp-server-data-exploration

by reading-plus-ai

MCP Server that equips Claude Desktop with an “explore-data” prompt template plus two tools (load-csv and run-script) for fully-automated, conversational data exploration.

448
47
Open Source

01

load-csv

Load a CSV file into a DataFrame

02

run-script

Execute a Python script

Installation

1. Clone the repository
git clone https://github.com/reading-plus-ai/mcp-server-data-exploration.git cd mcp-server-data-exploration
2. Create and activate a Python virtual environment (recommended)
python -m venv .venv source .venv/bin/activate # On Windows: .venv\Scripts\activate
3. Install Python dependencies
pip install -r requirements.txt
4. Copy the example env file (if provided) and adjust credentials / ports
cp .env.example .env # edit .env as needed
5. Run database migrations or seed scripts if the project supplies them
python manage.py migrate # or a project-specific command
6. Start the MCP data-exploration server
python main.py # or uvicorn/falcon/flask entry point noted in README
7. Access the server (default: http://localhost:8000) or the documented API endpoints.

Documentation

License: MIT License
Updated 7/30/2025