PDF Tools
Накладывает страницы PDF на шаблон бланка/фона
Вызовите этот инструмент из своего кода на трёх языках.
# 1) Request a presigned URL → returns { uploadUrl, storageKey }
curl -X POST 'https://api.elysiatools.com/api/upload/presign/pdf-stationery-underlay' \
-H 'Content-Type: application/json' \
-d '{"filename":"sourceFile.ext","contentType":"application/octet-stream","size":12345}'
curl -X POST 'https://api.elysiatools.com/api/upload/presign/pdf-stationery-underlay' \
-H 'Content-Type: application/json' \
-d '{"filename":"stationeryFile.ext","contentType":"application/octet-stream","size":12345}'
# 2) PUT the file bytes directly to the presigned uploadUrl
curl -X PUT '<presigned uploadUrl>' \
--data-binary @/path/to/file.ext
# 3) Call the tool, passing the returned storageKey for each file field
curl -X POST 'https://api.elysiatools.com/ru/api/tools/pdf-stationery-underlay' \
-F 'sourceFile=/public/samples/pdf/pdf-2026-02-19-source-4pages.pdf' \
-F 'stationeryFile=/public/samples/pdf/pdf-2026-02-11-source-2pages.pdf' \
-F 'templateMode=cycle' \
-F 'scaleMode=contain' \
-F 'marginMm=8' \
-F 'contentOpacity=1'Отправьте POST-запрос с входными данными в JSON. Параметры типа «файл» требуют предварительной загрузки.
POST https://api.elysiatools.com/ru/api/tools/pdf-stationery-underlay| Имя | Тип | Обязательный | Описание |
|---|---|---|---|
| sourceFile | fileнужна загрузка | Да | — |
| stationeryFile | fileнужна загрузка | Да | — |
| templateMode | select | Нет | — |
| scaleMode | select | Нет | — |
| marginMm | number | Нет | — |
| contentOpacity | number | Нет | — |
Файловый результат
{
"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)"
}Добавьте этот инструмент на свой сервер Model Context Protocol, чтобы ИИ-агенты могли перечислять и вызывать его.
Добавьте этот блок в конфигурацию вашего MCP-клиента:
{
"mcpServers": {
"elysiatools-pdf-stationery-underlay": {
"name": "pdf-stationery-underlay",
"description": "Накладывает страницы PDF на шаблон бланка/фона",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=pdf-stationery-underlay",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}После подключения к SSE-endpoint выведите список доступных инструментов:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Вызовите инструмент по его id; аргументы формируются из его параметров:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "pdf-stationery-underlay",
"arguments": {
"sourceFile": "/public/samples/pdf/pdf-2026-02-19-source-4pages.pdf",
"stationeryFile": "/public/samples/pdf/pdf-2026-02-11-source-2pages.pdf",
"templateMode": "cycle",
"scaleMode": "contain",
"marginMm": 8,
"contentOpacity": 1
}
}
}Вопросы или проблемы? Свяжитесь с [email protected]