parse_csv
Extract and parse CSV file contents, supporting multiple encoding formats, for efficient data processing and integration within the MCP Development Framework.
Instructions
解析CSV文件内容,支持各种编码格式
Input Schema
Name | Required | Description | Default |
---|---|---|---|
encoding | No | 文件编码格式,例如'utf-8'、'gbk'等,默认自动检测 | |
file_path | Yes | CSV文件的本地路径,例如'/path/to/data.csv' |
Input Schema (JSON Schema)
{
"properties": {
"encoding": {
"description": "文件编码格式,例如'utf-8'、'gbk'等,默认自动检测",
"type": "string"
},
"file_path": {
"description": "CSV文件的本地路径,例如'/path/to/data.csv'",
"type": "string"
}
},
"required": [
"file_path"
],
"type": "object"
}