Categories

XLSX S3 Batch Processor

Batch process XLSX files in S3-compatible object storage with filtering/cleaning and upload processed outputs back

Read XLSX objects from S3, transform rows, and return processed outputs.

  • Batch fetch by object key list
  • Optional row filtering by column/operator/value
  • Data cleaning (trim strings, drop empty rows)
  • Output as XLSX/CSV/JSON
  • Optionally upload processed files back to object storage

Example Results

1 examples

Batch Clean and Filter XLSX Objects

Read multiple xlsx files from object storage, clean rows, filter by column, and return zip manifest

xlsx-s3-batch-processor-example1.zip View File
View input parameters
{ "region": "us-east-1", "bucket": "my-data-bucket", "objectKeys": "input/a.xlsx\ninput/b.xlsx", "filterColumn": "status", "filterOperator": "equals", "filterValue": "paid", "outputFormat": "xlsx" }

Key Facts

Category
Format Conversion
Input Types
text, textarea, number, select, checkbox
Output Type
file
Sample Coverage
4
API Ready
Yes

Overview

Read XLSX objects from S3, transform rows, and return processed outputs. - Batch fetch by object key list - Optional row filtering by column/operator/value - Data cleaning (trim strings, drop empty rows) - Output as XLSX/CSV/JSON - Optionally upload processed files back to object storage

When to Use

  • Use it when you need to process csv, xlsx content quickly in the browser.
  • Helpful for format conversion workflows that need repeatable inputs and fast results.
  • Useful when you want to test input and output behavior before integrating the workflow elsewhere.

How It Works

  • Provide S3 Endpoint (optional), Region, Bucket, Access Key ID as input to the tool.
  • The tool processes the request and returns a file result.
  • For repeatable workflows, use the API endpoint shown on the page after validating the result interactively.

Use Cases

Process csv, xlsx data during debugging or QA.
Validate expected output before using the API or automation flows.
Compare small variations of input to understand output differences quickly.

Try with Samples

csv, xlsx, xls

Related Hubs

FAQ

What does XLSX S3 Batch Processor do?

XLSX S3 Batch Processor helps you process csv, xlsx content online without setting up a separate local script or app.

When should I use this tool?

Use it when you need a quick process workflow, want to verify output, or need a browser-based utility for format conversion tasks.

Can I try this tool with sample data?

Yes. Try short representative inputs first, then move to larger or more complex cases once the output looks correct.

What inputs does XLSX S3 Batch Processor accept?

XLSX S3 Batch Processor accepts S3 Endpoint (optional), Region, Bucket, Access Key ID.

Is there an API for XLSX S3 Batch Processor?

Yes. The tool page includes an API endpoint so you can move from manual testing to scripted usage.

API Documentation

Request Endpoint

POST /en/api/tools/xlsx-s3-batch-processor

Request Parameters

Parameter 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 -

Response Format

{
  "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)"
}
File: File

AI MCP Documentation

Add this tool to your MCP server 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://elysiatools.com/mcp/sse?toolId=xlsx-s3-batch-processor",
      "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]