load-csv
Easily load CSV files into a DataFrame for analysis within the Claude MCP Data Explorer, enabling efficient data exploration and insights generation through advanced scripting capabilities.
Instructions
Load a CSV file into a DataFrame for analysis
Input Schema
Name | Required | Description | Default |
---|---|---|---|
csv_path | Yes | Path to the CSV file to load | |
df_name | No | Name for the DataFrame (optional, defaults to df_1, df_2, etc.) |
Input Schema (JSON Schema)
{
"properties": {
"csv_path": {
"description": "Path to the CSV file to load",
"type": "string"
},
"df_name": {
"description": "Name for the DataFrame (optional, defaults to df_1, df_2, etc.)",
"type": "string"
}
},
"required": [
"csv_path"
],
"type": "object"
}