mcp-server-data-exploration

load_csv

Load CSV File Tool

Purpose: Load a local CSV file into a DataFrame.

Usage Notes: • If a df_name is not provided, the tool will automatically assign names sequentially as df_1, df_2, and so on.

Input Schema

NameRequiredDescriptionDefault
csv_pathYes
df_nameNo

Input Schema (JSON Schema)

{ "properties": { "csv_path": { "title": "Csv Path", "type": "string" }, "df_name": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Df Name" } }, "required": [ "csv_path" ], "title": "LoadCsv", "type": "object" }

You must be authenticated.

Other Tools