Format Conversion
Apply consistent colors, fonts, borders, and header styling to Excel sheets and export branded multi-theme reports
Call this tool from your code in three languages.
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/xlsx-sheet-theme-pack' \
-F 'file=@/path/to/workbookFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/en/api/tools/xlsx-sheet-theme-pack' \
-F 'workbookFile=/public/samples/xlsx/workbook-sales.xlsx' \
-F 'themePreset=corporate-blue' \
-F 'sheetNames=' \
-F 'headerRow=1' \
-F 'titleRows=0' \
-F 'freezeHeader=true' \
-F 'enableAutoFilter=true' \
-F 'zebraStripes=true' \
-F 'autoFitColumns=true'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-sheet-theme-pack| Name | Type | Required | Description |
|---|---|---|---|
| workbookFile | fileupload required | Yes | — |
| themePreset | select | Yes | — |
| sheetNames | text | No | — |
| headerRow | number | No | — |
| titleRows | number | No | — |
| freezeHeader | checkbox | No | — |
| enableAutoFilter | checkbox | No | — |
| zebraStripes | checkbox | No | — |
| autoFitColumns | checkbox | 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-sheet-theme-pack": {
"name": "xlsx-sheet-theme-pack",
"description": "Apply consistent colors, fonts, borders, and header styling to Excel sheets and export branded multi-theme reports",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=xlsx-sheet-theme-pack",
"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-sheet-theme-pack",
"arguments": {
"workbookFile": "/public/samples/xlsx/workbook-sales.xlsx",
"themePreset": "corporate-blue",
"sheetNames": "",
"headerRow": 1,
"titleRows": 0,
"freezeHeader": true,
"enableAutoFilter": true,
"zebraStripes": true,
"autoFitColumns": true
}
}
}Questions or issues? Contact [email protected]