PDF Tools
Добавляет видимую текстовую подпись или изображение подписи в PDF
Вызовите этот инструмент из своего кода на трёх языках.
# 1) Request a presigned URL → returns { uploadUrl, storageKey }
curl -X POST 'https://api.elysiatools.com/api/upload/presign/pdf-add-signature-online' \
-H 'Content-Type: application/json' \
-d '{"filename":"pdfFile.ext","contentType":"application/octet-stream","size":12345}'
curl -X POST 'https://api.elysiatools.com/api/upload/presign/pdf-add-signature-online' \
-H 'Content-Type: application/json' \
-d '{"filename":"signatureImage.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-add-signature-online' \
-F 'pdfFile=/public/samples/pdf/sample.pdf' \
-F 'signatureType=text' \
-F 'signatureImage=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'signatureText=Approved' \
-F 'reason=Review complete' \
-F 'location=' \
-F 'includeDate=true' \
-F 'pageTarget=last' \
-F 'pageNumber=1' \
-F 'position=bottom-right' \
-F 'customX=36' \
-F 'customY=36' \
-F 'boxWidth=180' \
-F 'boxHeight=72' \
-F 'signatureColor=#1f2937'Отправьте POST-запрос с входными данными в JSON. Параметры типа «файл» требуют предварительной загрузки.
POST https://api.elysiatools.com/ru/api/tools/pdf-add-signature-online| Имя | Тип | Обязательный | Описание |
|---|---|---|---|
| pdfFile | fileнужна загрузка | Да | — |
| signatureType | select | Нет | — |
| signatureImage | fileнужна загрузка | Нет | — |
| signatureText | text | Нет | — |
| reason | text | Нет | — |
| location | text | Нет | — |
| includeDate | checkbox | Нет | — |
| pageTarget | select | Нет | — |
| pageNumber | number | Нет | — |
| position | select | Нет | — |
| customX | number | Нет | — |
| customY | number | Нет | — |
| boxWidth | number | Нет | — |
| boxHeight | number | Нет | — |
| signatureColor | color | Нет | — |
Файловый результат
{
"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-add-signature-online": {
"name": "pdf-add-signature-online",
"description": "Добавляет видимую текстовую подпись или изображение подписи в PDF",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=pdf-add-signature-online",
"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-add-signature-online",
"arguments": {
"pdfFile": "/public/samples/pdf/sample.pdf",
"signatureType": "text",
"signatureImage": "https://example.com/file.ext",
"signatureText": "Approved",
"reason": "Review complete",
"location": "",
"includeDate": true,
"pageTarget": "last",
"pageNumber": 1,
"position": "bottom-right",
"customX": 36,
"customY": 36,
"boxWidth": 180,
"boxHeight": 72,
"signatureColor": "#1f2937"
}
}
}Вопросы или проблемы? Свяжитесь с [email protected]