Document Tools
Render structured table data into a paginated PDF with repeating headers and zebra rows
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/pdf-table-layout-engine' \
-H 'Content-Type: application/json' \
-d '{"tableData":"[{\"Product\":\"Widget A\",\"Qty\":2,\"Price\":19.5,\"Total\":39},{\"Product\":\"Widget B\",\"Qty\":1,\"Price\":9.9,\"Total\":9.9}]","columns":"Product, Qty, Price, Total","title":"Quarterly Sales","subtitle":"Generated sample","pageSize":"A4","orientation":"landscape","fontSize":11,"margin":16,"repeatHeader":true,"zebraRows":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/pdf-table-layout-engine| Name | Type | Required | Description |
|---|---|---|---|
| tableData | textarea | Yes | — |
| columns | text | No | — |
| title | text | No | — |
| subtitle | text | No | — |
| pageSize | select | No | — |
| orientation |
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-pdf-table-layout-engine": {
"name": "pdf-table-layout-engine",
"description": "Render structured table data into a paginated PDF with repeating headers and zebra rows",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=pdf-table-layout-engine",
"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": "pdf-table-layout-engine",
"arguments": {
"tableData": "[{\"Product\":\"Widget A\",\"Qty\":2,\"Price\":19.5,\"Total\":39},{\"Product\":\"Widget B\",\"Qty\":1,\"Price\":9.9,\"Total\":9.9}]",
"columns": "Product, Qty, Price, Total",
"title": "Quarterly Sales",
"subtitle": "Generated sample",
"pageSize": "A4",
"orientation": "landscape",
"fontSize": 11,
"margin": 16,
"repeatHeader": true,
"zebraRows": true
}
}
}| select |
| No |
| — |
| fontSize | number | No | — |
| margin | number | No | — |
| repeatHeader | checkbox | No | — |
| zebraRows | 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)"
}Questions or issues? Contact [email protected]