Format Conversion
Procesa xlsx en almacenamiento de objetos por lotes
Llama a esta herramienta desde tu código en tres lenguajes.
curl -X POST 'https://api.elysiatools.com/es/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/"}'Envía una petición POST con tus entradas en JSON. Los parámetros de tipo archivo requieren una subida previa.
POST https://api.elysiatools.com/es/api/tools/xlsx-s3-batch-processor| Nombre | Tipo | Obligatorio | Descripción |
|---|---|---|---|
| endpoint | text | No | — |
| region | text | No | — |
| bucket | text | Sí | — |
| accessKeyId | text | Sí | — |
| secretAccessKey | text | Sí | — |
| sessionToken | text | No | — |
| objectKeys | textarea | Sí | — |
| 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 | — |
Resultado de archivo
{
"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)"
}Añade esta herramienta a tu servidor Model Context Protocol para que los agentes de IA puedan listarla y llamarla.
Añade este bloque a la configuración de tu cliente MCP:
{
"mcpServers": {
"elysiatools-xlsx-s3-batch-processor": {
"name": "xlsx-s3-batch-processor",
"description": "Procesa xlsx en almacenamiento de objetos por lotes",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=xlsx-s3-batch-processor",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Tras conectar al endpoint SSE, lista las herramientas expuestas:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoca la herramienta por su id; los argumentos se construyen a partir de sus parámetros:
{
"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/"
}
}
}¿Dudas o problemas? Contacta con [email protected]