Document Tools
Génère une facture PDF avec marque à partir de lignes structurées
Appelez cet outil depuis votre code en trois langages.
# 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/fr/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=Paiement sous 14 jours.' \
-F 'logoFile=/public/logo.png' \
-F 'pageSize=A4'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/pdf-invoice-generator| Nom | Type | Requis | Description |
|---|---|---|---|
| companyName | text | Oui | — |
| companyInfo | textarea | Non | — |
| customerName | text | Oui | — |
| customerInfo | textarea | Non | — |
| invoiceNumber | text | Oui | — |
| invoiceDate | date | Non | — |
| dueDate | date | Non | — |
| currency | text | Non | — |
| taxRate | number | Non | — |
| lineItems | textarea | Oui | — |
| notes | textarea | Non | — |
| logoFile | fileupload requis | Non | — |
| pageSize | select | 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-pdf-invoice-generator": {
"name": "pdf-invoice-generator",
"description": "Génère une facture PDF avec marque à partir de lignes structurées",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=pdf-invoice-generator",
"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": "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": "Paiement sous 14 jours.",
"logoFile": "/public/logo.png",
"pageSize": "A4"
}
}
}Des questions ou un problème ? Contactez [email protected]