Categories

XLSX Markdown Table Exporter

Convert a selected Excel range or whole sheet into Markdown table format

Export worksheet data as Markdown tables. - Choose entire sheet or explicit A1 range - Use specified header row - Supports alignment markers and optional index column

Example Results

1 examples

Export Sheet Range to Markdown Table

Convert selected Excel range into markdown table format for docs and READMEs

xlsx-markdown-table-exporter-example1.md View File
View input parameters
{ "excelFile": "/public/samples/xlsx/workbook-sales.xlsx", "sheetName": "Sheet1", "range": "A1:C20", "align": "left" }

Click to upload file or drag and drop file here

Maximum file size: 100MB Supported formats: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel

API Documentation

Request Endpoint

POST /en/api/tools/xlsx-markdown-table-exporter

Request Parameters

Parameter Name Type Required Description
excelFile file (Upload required) Yes -
sheetName text No -
range text No -
headerRow number No -
align select No -
includeIndex checkbox No -
trimWhitespace checkbox No -

File type parameters need to be uploaded first via POST /upload/xlsx-markdown-table-exporter to get filePath, then pass filePath to the corresponding file field.

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-markdown-table-exporter": {
      "name": "xlsx-markdown-table-exporter",
      "description": "Convert a selected Excel range or whole sheet into Markdown table format",
      "baseUrl": "https://elysiatools.com/mcp/sse?toolId=xlsx-markdown-table-exporter",
      "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.

Supports URL file links or Base64 encoding for file parameters.

If you encounter any issues, please contact us at [email protected]