Document Tools
Generate payroll slips in batch as merged PDF or ZIP of separate PDFs
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/pdf-payroll-slip-batch' \
-H 'Content-Type: application/json' \
-d '{"companyName":"Elysia Payroll","payrollData":"[{\"employeeId\":\"E1\",\"name\":\"Alice\",\"earnings\":[{\"label\":\"Base Salary\",\"amount\":5000}],\"deductions\":[{\"label\":\"Tax\",\"amount\":700}]},{\"employeeId\":\"E2\",\"name\":\"Bob\",\"earnings\":[{\"label\":\"Base Salary\",\"amount\":4300}],\"deductions\":[{\"label\":\"Tax\",\"amount\":560}]}]","outputMode":"merged","pageSize":"A4","landscape":false,"waitUntil":"networkidle0","waitTime":0}'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-payroll-slip-batch| Name | Type | Required | Description |
|---|---|---|---|
| companyName | text | Yes | — |
| payrollData | textarea | No | — |
| outputMode | select | No | — |
| pageSize | select | No | — |
| landscape | checkbox | No | — |
| waitUntil |
| select |
| No |
| — |
| waitTime | number | 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-pdf-payroll-slip-batch": {
"name": "pdf-payroll-slip-batch",
"description": "Generate payroll slips in batch as merged PDF or ZIP of separate PDFs",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=pdf-payroll-slip-batch",
"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-payroll-slip-batch",
"arguments": {
"companyName": "Elysia Payroll",
"payrollData": "[{\"employeeId\":\"E1\",\"name\":\"Alice\",\"earnings\":[{\"label\":\"Base Salary\",\"amount\":5000}],\"deductions\":[{\"label\":\"Tax\",\"amount\":700}]},{\"employeeId\":\"E2\",\"name\":\"Bob\",\"earnings\":[{\"label\":\"Base Salary\",\"amount\":4300}],\"deductions\":[{\"label\":\"Tax\",\"amount\":560}]}]",
"outputMode": "merged",
"pageSize": "A4",
"landscape": false,
"waitUntil": "networkidle0",
"waitTime": 0
}
}
}Questions or issues? Contact [email protected]