Format Conversion
Convierte archivos Excel entre formatos antiguo (.xls) y nuevo (.xlsx)
Llama a esta herramienta desde tu código en tres lenguajes.
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/excel-version-converter' \
-F 'file=@/path/to/excelFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/es/api/tools/excel-version-converter' \
-F 'excelFile=/path/to/file.ext' \
-F 'targetFormat=xlsx' \
-F 'fileName=Leave empty to use original filename'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/excel-version-converter| Nombre | Tipo | Obligatorio | Descripción |
|---|---|---|---|
| excelFile | filesubida requerida | Sí | — |
| targetFormat | select | Sí | — |
| fileName | 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-excel-version-converter": {
"name": "excel-version-converter",
"description": "Convierte archivos Excel entre formatos antiguo (.xls) y nuevo (.xlsx)",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=excel-version-converter",
"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": "excel-version-converter",
"arguments": {
"excelFile": "https://example.com/file.ext",
"targetFormat": "xlsx",
"fileName": "Leave empty to use original filename"
}
}
}¿Dudas o problemas? Contacta con [email protected]