Text Processing
Generate formatted Markdown tables from CSV, JSON, or array data with alignment, header styles, width control, and merge hints
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/markdown-table-generator' \
-H 'Content-Type: application/json' \
-d '{"dataInput":"Name,Role,Score\nAlice,Engineer,98\nBob,Analyst,87","inputFormat":"csv","delimiter":",","hasHeader":true,"alignmentMode":"auto","headerStyle":"bold","columnWidths":"12, 12, 8","mergeRanges":"","includeMergeHints":true,"padColumns":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/markdown-table-generator| Name | Type | Required | Description |
|---|---|---|---|
| dataInput | textarea | Yes | — |
| inputFormat | select | No | — |
| delimiter | select | No | — |
| hasHeader | checkbox | No | — |
| alignmentMode | select | No | — |
| headerStyle |
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-markdown-table-generator": {
"name": "markdown-table-generator",
"description": "Generate formatted Markdown tables from CSV, JSON, or array data with alignment, header styles, width control, and merge hints",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=markdown-table-generator",
"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": "markdown-table-generator",
"arguments": {
"dataInput": "Name,Role,Score\nAlice,Engineer,98\nBob,Analyst,87",
"inputFormat": "csv",
"delimiter": ",",
"hasHeader": true,
"alignmentMode": "auto",
"headerStyle": "bold",
"columnWidths": "12, 12, 8",
"mergeRanges": "",
"includeMergeHints": true,
"padColumns": true
}
}
}| select |
| No |
| — |
| columnWidths | text | No | — |
| mergeRanges | textarea | No | — |
| includeMergeHints | checkbox | No | — |
| padColumns | checkbox | No | — |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]