Data Processing
Scale and normalize features using various methods for machine learning preprocessing and data standardization
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/feature-scaler' \
-H 'Content-Type: application/json' \
-d '{"csvData":"Enter your CSV data here...\n\nExample:\nFeature1,Feature2,Feature3,Label\n1.5,2.3,0.8,A\n3.2,1.1,2.5,B\n0.8,4.5,1.2,C\n2.1,3.4,1.8,A\n4.5,1.9,0.7,B","scalingMethod":"standard","selectedColumns":"Comma-separated column names. Leave empty to auto-detect numeric columns.","scalingParams":"JSON format parameters for inverse transformation. Leave empty for forward transformation.","hasHeader":true,"inverseTransform":false,"outputFormat":"csv","saveParams":true,"scaledOnly":false}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/feature-scaler| Name | Type | Required | Description |
|---|---|---|---|
| csvData | textarea | Yes | — |
| scalingMethod | select | Yes | — |
| selectedColumns | text | No | Specify which columns to scale. If empty, all numeric columns will be automatically detected and scaled. |
| scalingParams | textarea | No | Only required for inverse transform. Paste the scaling parameters from a previous run. |
| hasHeader | checkbox | No | Treat first row as column headers |
| inverseTransform | checkbox | No | Apply inverse transformation using provided parameters |
| outputFormat | select | Yes | — |
| saveParams | checkbox | No | Include scaling parameters in the output for future inverse transformations |
| scaledOnly | checkbox | No | Skip detailed analysis and only output the scaled data |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-feature-scaler": {
"name": "feature-scaler",
"description": "Scale and normalize features using various methods for machine learning preprocessing and data standardization",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=feature-scaler",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "feature-scaler",
"arguments": {
"csvData": "Enter your CSV data here...\n\nExample:\nFeature1,Feature2,Feature3,Label\n1.5,2.3,0.8,A\n3.2,1.1,2.5,B\n0.8,4.5,1.2,C\n2.1,3.4,1.8,A\n4.5,1.9,0.7,B",
"scalingMethod": "standard",
"selectedColumns": "Comma-separated column names. Leave empty to auto-detect numeric columns.",
"scalingParams": "JSON format parameters for inverse transformation. Leave empty for forward transformation.",
"hasHeader": true,
"inverseTransform": false,
"outputFormat": "csv",
"saveParams": true,
"scaledOnly": false
}
}
}Questions or issues? Contact [email protected]