We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ilvolodel/iris-legacy'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
extract_pdf.pyโข810 B
#!/usr/bin/env python3
"""
Script per estrarre PDF dall'EML sul droplet.
ESEGUIRE SUL DROPLET: docker exec iris-mcp-server python3 /opt/iris/extract_pdf.py
"""
import sys
import os
# Aggiungo path per importare file_utils
sys.path.insert(0, '/opt/iris/src/mcp_servers/microsoft/operations')
from file_utils import extract_pdf_from_eml
# Path dell'EML sul droplet
eml_path = "/app/attachments/20251023_064811_postacert.eml"
output_dir = "/app/attachments"
print(f"๐ Estraendo PDF da: {eml_path}")
# Estrai PDF
pdf_path = extract_pdf_from_eml(eml_path, output_dir)
if pdf_path:
print(f"โ PDF estratto con successo!")
print(f"๐ Path: {pdf_path}")
# Stampo SOLO il path per facilit parsing
print(f"PATH:{pdf_path}")
else:
print("โ Nessun PDF trovato nell'EML")
sys.exit(1)