Format Conversion
Batch process XLSX files in S3-compatible object storage with filtering/cleaning and upload processed outputs back
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/xlsx-s3-batch-processor' \
-H 'Content-Type: application/json' \
-d '{"endpoint":"https://s3.amazonaws.com","region":"us-east-1","bucket":"my-data-bucket","accessKeyId":"","secretAccessKey":"","sessionToken":"","objectKeys":"input/a.xlsx\ninput/b.xlsx","sheetName":"Sheet1","headerRow":1,"filterColumn":"status","filterOperator":"equals","filterValue":"paid","outputFormat":"xlsx","csvDelimiter":",","trimWhitespace":true,"removeEmptyRows":true,"uploadBack":false,"outputPrefix":"processed/"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/xlsx-s3-batch-processor| Name | Type | Required | Description |
|---|---|---|---|
| endpoint | text | No | — |
| region | text | No | — |
| bucket | text | Yes | — |
| accessKeyId | text | Yes | — |
| secretAccessKey | text | Yes | — |
| sessionToken | text | No | — |
| objectKeys | textarea | Yes | — |
| sheetName | text | No | — |
| headerRow | number | No | — |
| filterColumn | text | No | — |
| filterOperator | select | No | — |
| filterValue | text | No | — |
| outputFormat | select | No | — |
| csvDelimiter | text | No | — |
| trimWhitespace | checkbox | No | — |
| removeEmptyRows | checkbox | No | — |
| uploadBack | checkbox | No | — |
| outputPrefix | text | No | — |
File result
{
"filePath": "/public/processing/randomid.ext",
"fileName": "output.ext",
"contentType": "application/octet-stream",
"size": 1024,
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}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-xlsx-s3-batch-processor": {
"name": "xlsx-s3-batch-processor",
"description": "Batch process XLSX files in S3-compatible object storage with filtering/cleaning and upload processed outputs back",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=xlsx-s3-batch-processor",
"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": "xlsx-s3-batch-processor",
"arguments": {
"endpoint": "https://s3.amazonaws.com",
"region": "us-east-1",
"bucket": "my-data-bucket",
"accessKeyId": "",
"secretAccessKey": "",
"sessionToken": "",
"objectKeys": "input/a.xlsx\ninput/b.xlsx",
"sheetName": "Sheet1",
"headerRow": 1,
"filterColumn": "status",
"filterOperator": "equals",
"filterValue": "paid",
"outputFormat": "xlsx",
"csvDelimiter": ",",
"trimWhitespace": true,
"removeEmptyRows": true,
"uploadBack": false,
"outputPrefix": "processed/"
}
}
}Questions or issues? Contact [email protected]