Document Tools
Design and export stylish 2026 printable PDF calendars with bimonthly, quarterly, semiannual, or annual single-page layouts
Call this tool from your code in three languages.
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/pdf-2026-calendar-designer' \
-F 'file=@/path/to/customHolidaysFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/en/api/tools/pdf-2026-calendar-designer' \
-F 'title=2026 Business Planning Calendar' \
-F 'subtitle=Quarterly single-page layout with highlighted milestones' \
-F 'layout=quarterly' \
-F 'orientation=landscape' \
-F 'theme=vivid' \
-F 'pageSize=A4' \
-F 'weekStart=monday' \
-F 'showHolidays=true' \
-F 'holidayPreset=cn' \
-F 'showHolidayNames=true' \
-F 'customHolidaysJson=[{"date":"2026-03-12","name":"Product Launch","short":"PL"}]
or
{"2026-03-12":"Product Launch"}' \
-F 'customHolidaysFile=/path/to/file.ext' \
-F 'marginMm=6'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-2026-calendar-designer| Name | Type | Required | Description |
|---|---|---|---|
| title | text | Yes | — |
| subtitle | text | No | — |
| layout | select | No | — |
| orientation | select | No | — |
| theme | select | No | — |
| pageSize | select | No | — |
| weekStart | select | No | — |
| showHolidays | checkbox | No | — |
| holidayPreset | select | No | — |
| showHolidayNames | checkbox | No | — |
| customHolidaysJson | textarea | No | Optional custom holiday list in JSON. Supports array objects or date->name map. Only 2026 dates are used. |
| customHolidaysFile | fileupload required | No | — |
| marginMm | 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-2026-calendar-designer": {
"name": "pdf-2026-calendar-designer",
"description": "Design and export stylish 2026 printable PDF calendars with bimonthly, quarterly, semiannual, or annual single-page layouts",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=pdf-2026-calendar-designer",
"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-2026-calendar-designer",
"arguments": {
"title": "2026 Business Planning Calendar",
"subtitle": "Quarterly single-page layout with highlighted milestones",
"layout": "quarterly",
"orientation": "landscape",
"theme": "vivid",
"pageSize": "A4",
"weekStart": "monday",
"showHolidays": true,
"holidayPreset": "cn",
"showHolidayNames": true,
"customHolidaysJson": "[{\"date\":\"2026-03-12\",\"name\":\"Product Launch\",\"short\":\"PL\"}]\nor\n{\"2026-03-12\":\"Product Launch\"}",
"customHolidaysFile": "https://example.com/file.ext",
"marginMm": 6
}
}
}Questions or issues? Contact [email protected]