Document Tools
Convertit JSON TipTap/Quill/Slate en PDF
Appelez cet outil depuis votre code en trois langages.
# 1) Request a presigned URL → returns { uploadUrl, storageKey }
curl -X POST 'https://api.elysiatools.com/api/upload/presign/richtext-json-to-pdf' \
-H 'Content-Type: application/json' \
-d '{"filename":"jsonFile.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/fr/api/tools/richtext-json-to-pdf' \
-F 'jsonContent={"type":"doc","content":[{"type":"heading","attrs":{"level":2},"content":[{"type":"text","text":"Release Update"}]},{"type":"paragraph","content":[{"type":"text","text":"Generated sample."}]}]}' \
-F 'jsonFile=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'editorType=tiptap' \
-F 'documentTitle=TipTap Sample' \
-F 'baseFontSize=13' \
-F 'pageSize=A4' \
-F 'landscape=false' \
-F 'printBackground=true' \
-F 'marginTop=18' \
-F 'marginBottom=18' \
-F 'marginLeft=18' \
-F 'marginRight=18' \
-F 'waitUntil=networkidle0' \
-F 'waitTime=0'Envoyez une requête POST avec vos entrées en JSON. Les paramètres de type fichier nécessitent un upload préalable.
POST https://api.elysiatools.com/fr/api/tools/richtext-json-to-pdf| Nom | Type | Requis | Description |
|---|---|---|---|
| jsonContent | textarea | Non | — |
| jsonFile | fileupload requis | Non | — |
| editorType | select | Non | — |
| documentTitle | text | Non | — |
| baseFontSize | number | Non | — |
| pageSize | select | Non | — |
| landscape | checkbox | Non | — |
| printBackground | checkbox | Non | — |
| marginTop | number | Non | — |
| marginBottom | number | Non | — |
| marginLeft | number | Non | — |
| marginRight | number | Non | — |
| waitUntil | select | Non | — |
| waitTime | number | Non | — |
Résultat fichier
{
"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)"
}Ajoutez cet outil à votre serveur Model Context Protocol pour que les agents IA puissent le lister et l'appeler.
Ajoutez ce bloc à la configuration de votre client MCP :
{
"mcpServers": {
"elysiatools-richtext-json-to-pdf": {
"name": "richtext-json-to-pdf",
"description": "Convertit JSON TipTap/Quill/Slate en PDF",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=richtext-json-to-pdf",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Après connexion au point d'accès SSE, listez les outils exposés :
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Appelez l'outil par son id ; les arguments sont construits à partir de ses paramètres :
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "richtext-json-to-pdf",
"arguments": {
"jsonContent": "{\"type\":\"doc\",\"content\":[{\"type\":\"heading\",\"attrs\":{\"level\":2},\"content\":[{\"type\":\"text\",\"text\":\"Release Update\"}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"text\",\"text\":\"Generated sample.\"}]}]}",
"jsonFile": "https://example.com/file.ext",
"editorType": "tiptap",
"documentTitle": "TipTap Sample",
"baseFontSize": 13,
"pageSize": "A4",
"landscape": false,
"printBackground": true,
"marginTop": 18,
"marginBottom": 18,
"marginLeft": 18,
"marginRight": 18,
"waitUntil": "networkidle0",
"waitTime": 0
}
}
}Des questions ou un problème ? Contactez [email protected]