PDF Timesheet Summary
Automatically summarize timesheet/schedule data and export as PDF
Generate a schedule and timesheet summary PDF from JSON rows.
**Includes:**
- Employee-level totals (hours, shifts, overtime)
- Daily breakdown
- Full detail table for audit and payroll use
API Documentation
Request Endpoint
POST /en/api/tools/pdf-timesheet-summary
Request Parameters
| Parameter Name | Type | Required | Description |
|---|---|---|---|
| reportTitle | text | Yes | - |
| periodLabel | text | No | - |
| timesheetData | textarea | No | - |
| showDailyBreakdown | checkbox | No | - |
| includeOvertime | checkbox | No | - |
| standardDailyHours | number | No | - |
| pageSize | select | No | - |
| landscape | checkbox | No | - |
| waitUntil | select | No | - |
| waitTime | number | No | - |
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-pdf-timesheet-summary": {
"name": "pdf-timesheet-summary",
"description": "Automatically summarize timesheet/schedule data and export as PDF",
"baseUrl": "https://elysiatools.com/mcp/sse?toolId=pdf-timesheet-summary",
"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.
If you encounter any issues, please contact us at [email protected]