Data Processing
Pure code-based data format normalization tool that cleans and standardizes messy data using programmatic logic
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/data-normalizer' \
-H 'Content-Type: application/json' \
-d '{"inputData":"Paste your messy data... (CSV, JSON, XML, Excel data, etc.)","inputFormat":"auto","outputFormat":"json","normalizationOptions":["removeEmptyRows","trimWhitespace","standardizeQuotes"]}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/data-normalizer| Name | Type | Required | Description |
|---|---|---|---|
| inputData | textarea | Yes | Enter any data that needs normalization - CSV, JSON, XML, Excel spreadsheets, and other formats |
| inputFormat | select | Yes | Select the format of your input data |
| outputFormat | select | Yes | Select the format for your output data |
| normalizationOptions | checkbox | No | Select which normalization operations to perform |
Text result
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-data-normalizer": {
"name": "data-normalizer",
"description": "Pure code-based data format normalization tool that cleans and standardizes messy data using programmatic logic",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=data-normalizer",
"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": "data-normalizer",
"arguments": {
"inputData": "Paste your messy data... (CSV, JSON, XML, Excel data, etc.)",
"inputFormat": "auto",
"outputFormat": "json",
"normalizationOptions": [
"removeEmptyRows",
"trimWhitespace",
"standardizeQuotes"
]
}
}
}Questions or issues? Contact [email protected]
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}