Developer Tools
Извлекает JSON-структуру OpenDataLoader из PDF и показывает заголовки, абзацы, таблицы, списки и bounding box
Вызовите этот инструмент из своего кода на трёх языках.
# 1) Request a presigned URL → returns { uploadUrl, storageKey }
curl -X POST 'https://api.elysiatools.com/api/upload/presign/pdf-to-json-structure-explorer' \
-H 'Content-Type: application/json' \
-d '{"filename":"pdfFile.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-to-json-structure-explorer' \
-F 'pdfFile=/public/samples/pdf/brand-guidelines-pdf-example1.pdf' \
-F 'useStructTree=true' \
-F 'sanitizeSensitiveData=false' \
-F 'pages=' \
-F 'nodeFilter=all' \
-F 'searchTerm='Отправьте POST-запрос с входными данными в JSON. Параметры типа «файл» требуют предварительной загрузки.
POST https://api.elysiatools.com/ru/api/tools/pdf-to-json-structure-explorer| Имя | Тип | Обязательный | Описание |
|---|---|---|---|
| pdfFile | fileнужна загрузка | Да | — |
| useStructTree | checkbox | Нет | — |
| sanitizeSensitiveData | checkbox | Нет | — |
| pages | text | Нет | — |
| nodeFilter | select | Нет | — |
| searchTerm | text | Нет | — |
HTML-результат
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Добавьте этот инструмент на свой сервер Model Context Protocol, чтобы ИИ-агенты могли перечислять и вызывать его.
Добавьте этот блок в конфигурацию вашего MCP-клиента:
{
"mcpServers": {
"elysiatools-pdf-to-json-structure-explorer": {
"name": "pdf-to-json-structure-explorer",
"description": "Извлекает JSON-структуру OpenDataLoader из PDF и показывает заголовки, абзацы, таблицы, списки и bounding box",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=pdf-to-json-structure-explorer",
"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-to-json-structure-explorer",
"arguments": {
"pdfFile": "/public/samples/pdf/brand-guidelines-pdf-example1.pdf",
"useStructTree": true,
"sanitizeSensitiveData": false,
"pages": "",
"nodeFilter": "all",
"searchTerm": ""
}
}
}Вопросы или проблемы? Свяжитесь с [email protected]