Document Tools
Render a wiki page URL into a clean, print-ready PDF
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/wiki-page-to-pdf' \
-H 'Content-Type: application/json' \
-d '{"url":"https://confluence.org/confluence.php?visitid=23340","contentSelector":".mw-parser-output","baseFontSize":14,"pageSize":"A4","landscape":false,"printBackground":true,"marginTop":18,"marginBottom":18,"marginLeft":16,"marginRight":16,"waitUntil":"networkidle2","waitTime":1500}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/wiki-page-to-pdf| Name | Type | Required | Description |
|---|---|---|---|
| url | text | Yes | — |
| contentSelector | text | No | Optional CSS selector to target article content only |
| baseFontSize | number | No | — |
| pageSize | select | No | — |
| landscape | checkbox | No | — |
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-wiki-page-to-pdf": {
"name": "wiki-page-to-pdf",
"description": "Render a wiki page URL into a clean, print-ready PDF",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=wiki-page-to-pdf",
"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": "wiki-page-to-pdf",
"arguments": {
"url": "https://confluence.org/confluence.php?visitid=23340",
"contentSelector": ".mw-parser-output",
"baseFontSize": 14,
"pageSize": "A4",
"landscape": false,
"printBackground": true,
"marginTop": 18,
"marginBottom": 18,
"marginLeft": 16,
"marginRight": 16,
"waitUntil": "networkidle2",
"waitTime": 1500
}
}
}Questions or issues? Contact [email protected]
| printBackground |
| checkbox |
| No |
| — |
| marginTop | number | No | — |
| marginBottom | number | No | — |
| marginLeft | number | No | — |
| marginRight | number | 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)"
}