Document Tools
Genera boletines PDF multipagina
Llama a esta herramienta desde tu código en tres lenguajes.
curl -X POST 'https://api.elysiatools.com/es/api/tools/pdf-grade-report-card' \
-H 'Content-Type: application/json' \
-d '{"schoolName":"Elysia International School","reportTitle":"Student Grade Report Card","termLabel":"Spring 2026","reportData":"[{\"studentId\":\"S1\",\"name\":\"Alice\",\"className\":\"Class 8A\",\"subjects\":[{\"subject\":\"Math\",\"score\":95}]}]","showRank":true,"includeTeacherComments":true,"pageSize":"A4","landscape":false,"printBackground":true,"waitUntil":"networkidle0","waitTime":0}'Envía una petición POST con tus entradas en JSON. Los parámetros de tipo archivo requieren una subida previa.
POST https://api.elysiatools.com/es/api/tools/pdf-grade-report-card| Nombre | Tipo | Obligatorio | Descripción |
|---|---|---|---|
| schoolName | text | Sí | — |
| reportTitle | text | No | — |
| termLabel | text | No | — |
| reportData | textarea | No | — |
| showRank | checkbox | No | — |
| includeTeacherComments |
Añade esta herramienta a tu servidor Model Context Protocol para que los agentes de IA puedan listarla y llamarla.
Añade este bloque a la configuración de tu cliente MCP:
{
"mcpServers": {
"elysiatools-pdf-grade-report-card": {
"name": "pdf-grade-report-card",
"description": "Genera boletines PDF multipagina",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=pdf-grade-report-card",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Tras conectar al endpoint SSE, lista las herramientas expuestas:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoca la herramienta por su id; los argumentos se construyen a partir de sus parámetros:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "pdf-grade-report-card",
"arguments": {
"schoolName": "Elysia International School",
"reportTitle": "Student Grade Report Card",
"termLabel": "Spring 2026",
"reportData": "[{\"studentId\":\"S1\",\"name\":\"Alice\",\"className\":\"Class 8A\",\"subjects\":[{\"subject\":\"Math\",\"score\":95}]}]",
"showRank": true,
"includeTeacherComments": true,
"pageSize": "A4",
"landscape": false,
"printBackground": true,
"waitUntil": "networkidle0",
"waitTime": 0
}
}
}| checkbox |
| No |
| — |
| pageSize | select | No | — |
| landscape | checkbox | No | — |
| printBackground | checkbox | No | — |
| waitUntil | select | No | — |
| waitTime | number | No | — |
Resultado de archivo
{
"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)"
}¿Dudas o problemas? Contacta con [email protected]