summarize_csv_file
Quickly summarize a CSV file by calculating and reporting its row and column count. Input the filename to retrieve the file's dimensions efficiently using the MCP Mix Server.
Instructions
Summarise a CVS file by reporting its number of rows and columns.
Args: filename (str): Name of the CSV file in the /data directory.
Returns: str: A string describing the file's dimensions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
}
},
"required": [
"filename"
],
"title": "summarize_csv_fileArguments",
"type": "object"
}