Document Tools
Genera una factura PDF con marca desde partidas estructuradas
Llama a esta herramienta desde tu código en tres lenguajes.
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/pdf-invoice-generator' \
-F 'file=@/path/to/logoFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/es/api/tools/pdf-invoice-generator' \
-F 'companyName=Nova Studio LLC' \
-F 'companyInfo=123 Market Street
San Francisco, CA' \
-F 'customerName=Atlas Ventures' \
-F 'customerInfo=77 Mission Blvd
San Jose, CA' \
-F 'invoiceNumber=INV-2026-0042' \
-F 'invoiceDate=2026-02-05' \
-F 'dueDate=2026-02-20' \
-F 'currency=USD' \
-F 'taxRate=7.5' \
-F 'lineItems=[{"description":"Design Sprint","quantity":3,"unitPrice":1200}]' \
-F 'notes=Pago dentro de 14 días.' \
-F 'logoFile=/public/logo.png' \
-F 'pageSize=A4'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-invoice-generator| Nombre | Tipo | Obligatorio | Descripción |
|---|---|---|---|
| companyName | text | Sí | — |
| companyInfo | textarea | No | — |
| customerName | text | Sí | — |
| customerInfo | textarea | No | — |
| invoiceNumber | text | Sí | — |
| invoiceDate | date | No | — |
| dueDate | date | No | — |
| currency | text | No | — |
| taxRate | number | No | — |
| lineItems | textarea | Sí | — |
| notes | textarea | No | — |
| logoFile | filesubida requerida | No | — |
| pageSize | select | 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)"
}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-invoice-generator": {
"name": "pdf-invoice-generator",
"description": "Genera una factura PDF con marca desde partidas estructuradas",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=pdf-invoice-generator",
"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-invoice-generator",
"arguments": {
"companyName": "Nova Studio LLC",
"companyInfo": "123 Market Street\nSan Francisco, CA",
"customerName": "Atlas Ventures",
"customerInfo": "77 Mission Blvd\nSan Jose, CA",
"invoiceNumber": "INV-2026-0042",
"invoiceDate": "2026-02-05",
"dueDate": "2026-02-20",
"currency": "USD",
"taxRate": 7.5,
"lineItems": "[{\"description\":\"Design Sprint\",\"quantity\":3,\"unitPrice\":1200}]",
"notes": "Pago dentro de 14 días.",
"logoFile": "/public/logo.png",
"pageSize": "A4"
}
}
}¿Dudas o problemas? Contacta con [email protected]