CSV Column Selector
Select specific columns from CSV data by column names or indices. Perfect for extracting relevant data from large CSV files with many columns.
API Documentation
Request Endpoint
POST /en/api/tools/csv-column-selector
Request Parameters
| Parameter Name | Type | Required | Description |
|---|---|---|---|
| csvInput | textarea | Yes | - |
| delimiter | select | Yes | - |
| columnSelectionMethod | select | Yes | - |
| selectedColumns | text | Yes | For "By Name": column1,column2,column3 For "By Index": 1,3,5 For "By Range": 1-3,5,7-9 |
| outputDelimiter | select | Yes | - |
| includeHeader | checkbox | No | - |
| skipEmptyColumns | checkbox | No | Remove columns that are completely empty in the data |
| trimValues | checkbox | No | Remove whitespace from beginning and end of cell values |
Response Format
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}
Text:
Text
AI MCP Documentation
Add this tool to your MCP server configuration:
{
"mcpServers": {
"elysiatools-csv-column-selector": {
"name": "csv-column-selector",
"description": "Select specific columns from CSV data by column names or indices. Perfect for extracting relevant data from large CSV files with many columns.",
"baseUrl": "https://elysiatools.com/mcp/sse?toolId=csv-column-selector",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}
You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.
If you encounter any issues, please contact us at [email protected]