Document Tools
Generate multi-page grade report cards with student info, scores, and comments
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/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}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/pdf-grade-report-card| Name | Type | Required | Description |
|---|---|---|---|
| schoolName | text | Yes | — |
| reportTitle | text | No | — |
| termLabel | text | No | — |
| reportData | textarea | No | — |
| showRank | checkbox | No | — |
| includeTeacherComments |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-pdf-grade-report-card": {
"name": "pdf-grade-report-card",
"description": "Generate multi-page grade report cards with student info, scores, and comments",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=pdf-grade-report-card",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"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 | — |
File result
{
"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)"
}Questions or issues? Contact [email protected]