adaptai / projects /ui /DeepCode /tools /pdf_downloader.py
ADAPT-Chase's picture
Add files using upload-large-folder tool
6a911c8 verified
#!/usr/bin/env python3
"""
Smart PDF Downloader MCP Tool
A standardized MCP tool using FastMCP for intelligent file downloading and document conversion.
Supports natural language instructions for downloading files from URLs, moving local files,
and automatic conversion to Markdown format with image extraction.
Features:
- Natural language instruction parsing
- URL and local path extraction
- Automatic document conversion (PDF, DOCX, PPTX, HTML, etc.)
- Image extraction and preservation
- Multi-format support with fallback options
"""
import os
import re
import aiohttp
import aiofiles
import shutil
import sys
import io
from typing import List, Dict, Optional, Any
from urllib.parse import urlparse, unquote
from datetime import datetime
from mcp.server import FastMCP
# Docling imports for document conversion
try:
from docling.document_converter import DocumentConverter
from docling.datamodel.base_models import InputFormat
from docling.datamodel.pipeline_options import PdfPipelineOptions
from docling.document_converter import PdfFormatOption
DOCLING_AVAILABLE = True
except ImportError:
DOCLING_AVAILABLE = False
print(
"Warning: docling package not available. Document conversion will be disabled."
)
# Fallback PDF text extraction
try:
import PyPDF2
PYPDF2_AVAILABLE = True
except ImportError:
PYPDF2_AVAILABLE = False
print(
"Warning: PyPDF2 package not available. Fallback PDF extraction will be disabled."
)
# 设置标准输出编码为UTF-8
if sys.stdout.encoding != "utf-8":
try:
if hasattr(sys.stdout, "reconfigure"):
sys.stdout.reconfigure(encoding="utf-8")
sys.stderr.reconfigure(encoding="utf-8")
else:
sys.stdout = io.TextIOWrapper(sys.stdout.detach(), encoding="utf-8")
sys.stderr = io.TextIOWrapper(sys.stderr.detach(), encoding="utf-8")
except Exception as e:
print(f"Warning: Could not set UTF-8 encoding: {e}")
# 创建 FastMCP 实例
mcp = FastMCP("smart-pdf-downloader")
# 辅助函数
def format_success_message(action: str, details: Dict[str, Any]) -> str:
"""格式化成功消息"""
return f"✅ {action}\n" + "\n".join(f" {k}: {v}" for k, v in details.items())
def format_error_message(action: str, error: str) -> str:
"""格式化错误消息"""
return f"❌ {action}\n Error: {error}"
def format_warning_message(action: str, warning: str) -> str:
"""格式化警告消息"""
return f"⚠️ {action}\n Warning: {warning}"
async def perform_document_conversion(
file_path: str, extract_images: bool = True
) -> Optional[str]:
"""
执行文档转换的共用逻辑
Args:
file_path: 文件路径
extract_images: 是否提取图片
Returns:
转换信息字符串,如果没有转换则返回None
"""
if not file_path:
return None
conversion_msg = ""
# 首先尝试使用简单的PDF转换器(对于PDF文件)
# 检查文件是否实际为PDF(无论扩展名如何)
is_pdf_file = False
if PYPDF2_AVAILABLE:
try:
with open(file_path, "rb") as f:
header = f.read(8)
is_pdf_file = header.startswith(b"%PDF")
except Exception:
is_pdf_file = file_path.lower().endswith(".pdf")
if is_pdf_file and PYPDF2_AVAILABLE:
try:
simple_converter = SimplePdfConverter()
conversion_result = simple_converter.convert_pdf_to_markdown(file_path)
if conversion_result["success"]:
conversion_msg = "\n [INFO] PDF converted to Markdown (PyPDF2)"
conversion_msg += (
f"\n Markdown file: {conversion_result['output_file']}"
)
conversion_msg += (
f"\n Conversion time: {conversion_result['duration']:.2f} seconds"
)
conversion_msg += (
f"\n Pages extracted: {conversion_result['pages_extracted']}"
)
else:
conversion_msg = f"\n [WARNING] PDF conversion failed: {conversion_result['error']}"
except Exception as conv_error:
conversion_msg = f"\n [WARNING] PDF conversion error: {str(conv_error)}"
# 如果简单转换失败,尝试使用docling(支持图片提取)
# if not conversion_success and DOCLING_AVAILABLE:
# try:
# converter = DoclingConverter()
# if converter.is_supported_format(file_path):
# conversion_result = converter.convert_to_markdown(
# file_path, extract_images=extract_images
# )
# if conversion_result["success"]:
# conversion_msg = (
# "\n [INFO] Document converted to Markdown (docling)"
# )
# conversion_msg += (
# f"\n Markdown file: {conversion_result['output_file']}"
# )
# conversion_msg += f"\n Conversion time: {conversion_result['duration']:.2f} seconds"
# if conversion_result.get("images_extracted", 0) > 0:
# conversion_msg += f"\n Images extracted: {conversion_result['images_extracted']}"
# images_dir = os.path.join(
# os.path.dirname(conversion_result["output_file"]), "images"
# )
# conversion_msg += f"\n Images saved to: {images_dir}"
# else:
# conversion_msg = f"\n [WARNING] Docling conversion failed: {conversion_result['error']}"
# except Exception as conv_error:
# conversion_msg = (
# f"\n [WARNING] Docling conversion error: {str(conv_error)}"
# )
return conversion_msg if conversion_msg else None
def format_file_operation_result(
operation: str,
source: str,
destination: str,
result: Dict[str, Any],
conversion_msg: Optional[str] = None,
) -> str:
"""
格式化文件操作结果的共用逻辑
Args:
operation: 操作类型 ("download" 或 "move")
source: 源文件/URL
destination: 目标路径
result: 操作结果字典
conversion_msg: 转换消息
Returns:
格式化的结果消息
"""
if result["success"]:
size_mb = result["size"] / (1024 * 1024)
msg = f"[SUCCESS] Successfully {operation}d: {source}\n"
if operation == "download":
msg += f" File: {destination}\n"
msg += f" Size: {size_mb:.2f} MB\n"
msg += f" Time: {result['duration']:.2f} seconds\n"
speed_mb = result.get("speed", 0) / (1024 * 1024)
msg += f" Speed: {speed_mb:.2f} MB/s"
else: # move
msg += f" To: {destination}\n"
msg += f" Size: {size_mb:.2f} MB\n"
msg += f" Time: {result['duration']:.2f} seconds"
if conversion_msg:
msg += conversion_msg
return msg
else:
return f"[ERROR] Failed to {operation}: {source}\n Error: {result.get('error', 'Unknown error')}"
class LocalPathExtractor:
"""本地路径提取器"""
@staticmethod
def is_local_path(path: str) -> bool:
"""判断是否为本地路径"""
path = path.strip("\"'")
# 检查是否为URL
if re.match(r"^https?://", path, re.IGNORECASE) or re.match(
r"^ftp://", path, re.IGNORECASE
):
return False
# 路径指示符
path_indicators = [os.path.sep, "/", "\\", "~", ".", ".."]
has_extension = bool(os.path.splitext(path)[1])
if any(indicator in path for indicator in path_indicators) or has_extension:
expanded_path = os.path.expanduser(path)
return os.path.exists(expanded_path) or any(
indicator in path for indicator in path_indicators
)
return False
@staticmethod
def extract_local_paths(text: str) -> List[str]:
"""从文本中提取本地文件路径"""
patterns = [
r'"([^"]+)"',
r"'([^']+)'",
r"(?:^|\s)((?:[~./\\]|[A-Za-z]:)?(?:[^/\\\s]+[/\\])*[^/\\\s]+\.[A-Za-z0-9]+)(?:\s|$)",
r"(?:^|\s)((?:~|\.{1,2})?/[^\s]+)(?:\s|$)",
r"(?:^|\s)([A-Za-z]:[/\\][^\s]+)(?:\s|$)",
r"(?:^|\s)(\.{1,2}[/\\][^\s]+)(?:\s|$)",
]
local_paths = []
potential_paths = []
for pattern in patterns:
matches = re.findall(pattern, text, re.MULTILINE)
potential_paths.extend(matches)
for path in potential_paths:
path = path.strip()
if path and LocalPathExtractor.is_local_path(path):
expanded_path = os.path.expanduser(path)
if expanded_path not in local_paths:
local_paths.append(expanded_path)
return local_paths
class URLExtractor:
"""URL提取器"""
URL_PATTERNS = [
r"https?://(?:[-\w.]|(?:%[\da-fA-F]{2}))+(?:/(?:[-\w._~!$&\'()*+,;=:@]|%[\da-fA-F]{2})*)*(?:\?(?:[-\w._~!$&\'()*+,;=:@/?]|%[\da-fA-F]{2})*)?(?:#(?:[-\w._~!$&\'()*+,;=:@/?]|%[\da-fA-F]{2})*)?",
r"ftp://(?:[-\w.]|(?:%[\da-fA-F]{2}))+(?:/(?:[-\w._~!$&\'()*+,;=:@]|%[\da-fA-F]{2})*)*",
r"(?<!\S)(?:www\.)?[-\w]+(?:\.[-\w]+)+/(?:[-\w._~!$&\'()*+,;=:@/]|%[\da-fA-F]{2})+",
]
@staticmethod
def convert_arxiv_url(url: str) -> str:
"""将arXiv网页链接转换为PDF下载链接"""
# 匹配arXiv论文ID的正则表达式
arxiv_pattern = r"arxiv\.org/abs/(\d+\.\d+)(?:v\d+)?"
match = re.search(arxiv_pattern, url, re.IGNORECASE)
if match:
paper_id = match.group(1)
return f"https://arxiv.org/pdf/{paper_id}.pdf"
return url
@classmethod
def extract_urls(cls, text: str) -> List[str]:
"""从文本中提取URL"""
urls = []
# 首先处理特殊情况:@开头的URL
at_url_pattern = r"@(https?://[^\s]+)"
at_matches = re.findall(at_url_pattern, text, re.IGNORECASE)
for match in at_matches:
# 处理arXiv链接
url = cls.convert_arxiv_url(match.rstrip("/"))
urls.append(url)
# 然后使用原有的正则模式
for pattern in cls.URL_PATTERNS:
matches = re.findall(pattern, text, re.IGNORECASE)
for match in matches:
# 处理可能缺少协议的URL
if not match.startswith(("http://", "https://", "ftp://")):
# 检查是否是 www 开头
if match.startswith("www."):
match = "https://" + match
else:
# 其他情况也添加 https
match = "https://" + match
# 处理arXiv链接
url = cls.convert_arxiv_url(match.rstrip("/"))
urls.append(url)
# 去重并保持顺序
seen = set()
unique_urls = []
for url in urls:
if url not in seen:
seen.add(url)
unique_urls.append(url)
return unique_urls
@staticmethod
def infer_filename_from_url(url: str) -> str:
"""从URL推断文件名"""
parsed = urlparse(url)
path = unquote(parsed.path)
# 从路径中提取文件名
filename = os.path.basename(path)
# 特殊处理:arxiv PDF链接
if "arxiv.org" in parsed.netloc and "/pdf/" in path:
if filename:
# 检查是否已经有合适的文件扩展名
if not filename.lower().endswith((".pdf", ".doc", ".docx", ".txt")):
filename = f"{filename}.pdf"
else:
path_parts = [p for p in path.split("/") if p]
if path_parts and path_parts[-1]:
filename = f"{path_parts[-1]}.pdf"
else:
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
filename = f"arxiv_paper_{timestamp}.pdf"
# 如果没有文件名或没有扩展名,生成一个
elif not filename or "." not in filename:
# 尝试从URL生成有意义的文件名
domain = parsed.netloc.replace("www.", "").replace(".", "_")
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
# 尝试根据路径推断文件类型
if not path or path == "/":
filename = f"{domain}_{timestamp}.html"
else:
# 使用路径的最后一部分
path_parts = [p for p in path.split("/") if p]
if path_parts:
filename = f"{path_parts[-1]}_{timestamp}"
else:
filename = f"{domain}_{timestamp}"
# 如果还是没有扩展名,根据路径推断
if "." not in filename:
# 根据路径中的关键词推断文件类型
if "/pdf/" in path.lower() or path.lower().endswith("pdf"):
filename += ".pdf"
elif any(
ext in path.lower() for ext in ["/doc/", "/word/", ".docx"]
):
filename += ".docx"
elif any(
ext in path.lower()
for ext in ["/ppt/", "/powerpoint/", ".pptx"]
):
filename += ".pptx"
elif any(ext in path.lower() for ext in ["/csv/", ".csv"]):
filename += ".csv"
elif any(ext in path.lower() for ext in ["/zip/", ".zip"]):
filename += ".zip"
else:
filename += ".html"
return filename
class PathExtractor:
"""路径提取器"""
@staticmethod
def extract_target_path(text: str) -> Optional[str]:
"""从文本中提取目标路径"""
patterns = [
r'(?:save|download|store|put|place|write|copy|move)\s+(?:to|into|in|at)\s+["\']?([^\s"\']+)["\']?',
r'(?:to|into|in|at)\s+(?:folder|directory|dir|path|location)\s*["\']?([^\s"\']+)["\']?',
r'(?:destination|target|output)\s*(?:is|:)?\s*["\']?([^\s"\']+)["\']?',
r'(?:保存|下载|存储|放到|写入|复制|移动)(?:到|至|去)\s*["\']?([^\s"\']+)["\']?',
r'(?:到|在|至)\s*["\']?([^\s"\']+)["\']?\s*(?:文件夹|目录|路径|位置)',
]
filter_words = {
"here",
"there",
"current",
"local",
"this",
"that",
"这里",
"那里",
"当前",
"本地",
"这个",
"那个",
}
for pattern in patterns:
match = re.search(pattern, text, re.IGNORECASE)
if match:
path = match.group(1).strip("。,,.、")
if path and path.lower() not in filter_words:
return path
return None
class SimplePdfConverter:
"""简单的PDF转换器,使用PyPDF2提取文本"""
def convert_pdf_to_markdown(
self, input_file: str, output_file: Optional[str] = None
) -> Dict[str, Any]:
"""
使用PyPDF2将PDF转换为Markdown格式
Args:
input_file: 输入PDF文件路径
output_file: 输出Markdown文件路径(可选)
Returns:
转换结果字典
"""
if not PYPDF2_AVAILABLE:
return {"success": False, "error": "PyPDF2 package is not available"}
try:
# 检查输入文件是否存在
if not os.path.exists(input_file):
return {
"success": False,
"error": f"Input file not found: {input_file}",
}
# 如果没有指定输出文件,自动生成
if not output_file:
base_name = os.path.splitext(input_file)[0]
output_file = f"{base_name}.md"
# 确保输出目录存在
output_dir = os.path.dirname(output_file)
if output_dir:
os.makedirs(output_dir, exist_ok=True)
# 执行转换
start_time = datetime.now()
# 读取PDF文件
with open(input_file, "rb") as file:
pdf_reader = PyPDF2.PdfReader(file)
text_content = []
# 提取每页文本
for page_num, page in enumerate(pdf_reader.pages, 1):
text = page.extract_text()
if text.strip():
text_content.append(f"## Page {page_num}\n\n{text.strip()}\n\n")
# 生成Markdown内容
markdown_content = f"# Extracted from {os.path.basename(input_file)}\n\n"
markdown_content += f"*Total pages: {len(pdf_reader.pages)}*\n\n"
markdown_content += "---\n\n"
markdown_content += "".join(text_content)
# 保存到文件
with open(output_file, "w", encoding="utf-8") as f:
f.write(markdown_content)
# 计算转换时间
duration = (datetime.now() - start_time).total_seconds()
# 获取文件大小
input_size = os.path.getsize(input_file)
output_size = os.path.getsize(output_file)
return {
"success": True,
"input_file": input_file,
"output_file": output_file,
"input_size": input_size,
"output_size": output_size,
"duration": duration,
"markdown_content": markdown_content,
"pages_extracted": len(pdf_reader.pages),
}
except Exception as e:
return {
"success": False,
"input_file": input_file,
"error": f"Conversion failed: {str(e)}",
}
class DoclingConverter:
"""文档转换器,使用docling将文档转换为Markdown格式,支持图片提取"""
def __init__(self):
if not DOCLING_AVAILABLE:
raise ImportError(
"docling package is not available. Please install it first."
)
# 配置PDF处理选项
pdf_pipeline_options = PdfPipelineOptions()
pdf_pipeline_options.do_ocr = False # 暂时禁用OCR以避免认证问题
pdf_pipeline_options.do_table_structure = False # 暂时禁用表格结构识别
# 创建文档转换器(使用基础模式)
try:
self.converter = DocumentConverter(
format_options={
InputFormat.PDF: PdfFormatOption(
pipeline_options=pdf_pipeline_options
)
}
)
except Exception:
# 如果失败,尝试更简单的配置
self.converter = DocumentConverter()
def is_supported_format(self, file_path: str) -> bool:
"""检查文件格式是否支持转换"""
if not DOCLING_AVAILABLE:
return False
supported_extensions = {".pdf", ".docx", ".pptx", ".html", ".md", ".txt"}
file_extension = os.path.splitext(file_path)[1].lower()
return file_extension in supported_extensions
def is_url(self, path: str) -> bool:
"""检查路径是否为URL"""
try:
result = urlparse(path)
return result.scheme in ("http", "https")
except Exception:
return False
def extract_images(self, doc, output_dir: str) -> Dict[str, str]:
"""
提取文档中的图片并保存到本地
Args:
doc: docling文档对象
output_dir: 输出目录
Returns:
图片ID到本地文件路径的映射
"""
images_dir = os.path.join(output_dir, "images")
os.makedirs(images_dir, exist_ok=True)
image_map = {} # docling图片id -> 本地文件名
try:
# 获取文档中的图片
images = getattr(doc, "images", [])
for idx, img in enumerate(images):
try:
# 获取图片格式,默认为png
ext = getattr(img, "format", None) or "png"
if ext.lower() not in ["png", "jpg", "jpeg", "gif", "bmp", "webp"]:
ext = "png"
# 生成文件名
filename = f"image_{idx+1}.{ext}"
filepath = os.path.join(images_dir, filename)
# 保存图片数据
img_data = getattr(img, "data", None)
if img_data:
with open(filepath, "wb") as f:
f.write(img_data)
# 计算相对路径
rel_path = os.path.relpath(filepath, output_dir)
img_id = getattr(img, "id", str(idx + 1))
image_map[img_id] = rel_path
except Exception as img_error:
print(f"Warning: Failed to extract image {idx+1}: {img_error}")
continue
except Exception as e:
print(f"Warning: Failed to extract images: {e}")
return image_map
def process_markdown_with_images(
self, markdown_content: str, image_map: Dict[str, str]
) -> str:
"""
处理Markdown内容,替换图片占位符为实际的图片路径
Args:
markdown_content: 原始Markdown内容
image_map: 图片ID到本地路径的映射
Returns:
处理后的Markdown内容
"""
def replace_img(match):
img_id = match.group(1)
if img_id in image_map:
return f"![Image]({image_map[img_id]})"
else:
return match.group(0)
# 替换docling的图片占位符
processed_content = re.sub(
r"!\[Image\]\(docling://image/([^)]+)\)", replace_img, markdown_content
)
return processed_content
def convert_to_markdown(
self,
input_file: str,
output_file: Optional[str] = None,
extract_images: bool = True,
) -> Dict[str, Any]:
"""
将文档转换为Markdown格式,支持图片提取
Args:
input_file: 输入文件路径或URL
output_file: 输出Markdown文件路径(可选)
extract_images: 是否提取图片(默认True)
Returns:
转换结果字典
"""
if not DOCLING_AVAILABLE:
return {"success": False, "error": "docling package is not available"}
try:
# 检查输入文件(如果不是URL)
if not self.is_url(input_file):
if not os.path.exists(input_file):
return {
"success": False,
"error": f"Input file not found: {input_file}",
}
# 检查文件格式是否支持
if not self.is_supported_format(input_file):
return {
"success": False,
"error": f"Unsupported file format: {os.path.splitext(input_file)[1]}",
}
else:
# 对于URL,检查是否为支持的格式
if not input_file.lower().endswith(
(".pdf", ".docx", ".pptx", ".html", ".md", ".txt")
):
return {
"success": False,
"error": f"Unsupported URL format: {input_file}",
}
# 如果没有指定输出文件,自动生成
if not output_file:
if self.is_url(input_file):
# 从URL生成文件名
filename = URLExtractor.infer_filename_from_url(input_file)
base_name = os.path.splitext(filename)[0]
else:
base_name = os.path.splitext(input_file)[0]
output_file = f"{base_name}.md"
# 确保输出目录存在
output_dir = os.path.dirname(output_file) or "."
os.makedirs(output_dir, exist_ok=True)
# 执行转换
start_time = datetime.now()
result = self.converter.convert(input_file)
doc = result.document
# 提取图片(如果启用)
image_map = {}
images_extracted = 0
if extract_images:
image_map = self.extract_images(doc, output_dir)
images_extracted = len(image_map)
# 获取Markdown内容
markdown_content = doc.export_to_markdown()
# 处理图片占位符
if extract_images and image_map:
markdown_content = self.process_markdown_with_images(
markdown_content, image_map
)
# 保存到文件
with open(output_file, "w", encoding="utf-8") as f:
f.write(markdown_content)
# 计算转换时间
duration = (datetime.now() - start_time).total_seconds()
# 获取文件大小
if self.is_url(input_file):
input_size = 0 # URL无法直接获取大小
else:
input_size = os.path.getsize(input_file)
output_size = os.path.getsize(output_file)
return {
"success": True,
"input_file": input_file,
"output_file": output_file,
"input_size": input_size,
"output_size": output_size,
"duration": duration,
"markdown_content": markdown_content,
"images_extracted": images_extracted,
"image_map": image_map,
}
except Exception as e:
return {
"success": False,
"input_file": input_file,
"error": f"Conversion failed: {str(e)}",
}
async def check_url_accessible(url: str) -> Dict[str, Any]:
"""检查URL是否可访问"""
try:
timeout = aiohttp.ClientTimeout(total=10)
async with aiohttp.ClientSession(timeout=timeout) as session:
async with session.head(url, allow_redirects=True) as response:
return {
"accessible": response.status < 400,
"status": response.status,
"content_type": response.headers.get("Content-Type", ""),
"content_length": response.headers.get("Content-Length", 0),
}
except Exception:
return {
"accessible": False,
"status": 0,
"content_type": "",
"content_length": 0,
}
async def download_file(url: str, destination: str) -> Dict[str, Any]:
"""下载单个文件"""
start_time = datetime.now()
chunk_size = 8192
try:
timeout = aiohttp.ClientTimeout(total=300) # 5分钟超时
async with aiohttp.ClientSession(timeout=timeout) as session:
async with session.get(url) as response:
# 检查响应状态
response.raise_for_status()
# 获取文件信息
content_type = response.headers.get(
"Content-Type", "application/octet-stream"
)
# 确保目标目录存在
parent_dir = os.path.dirname(destination)
if parent_dir:
os.makedirs(parent_dir, exist_ok=True)
# 下载文件
downloaded = 0
async with aiofiles.open(destination, "wb") as file:
async for chunk in response.content.iter_chunked(chunk_size):
await file.write(chunk)
downloaded += len(chunk)
# 计算下载时间
duration = (datetime.now() - start_time).total_seconds()
return {
"success": True,
"url": url,
"destination": destination,
"size": downloaded,
"content_type": content_type,
"duration": duration,
"speed": downloaded / duration if duration > 0 else 0,
}
except aiohttp.ClientError as e:
return {
"success": False,
"url": url,
"destination": destination,
"error": f"Network error: {str(e)}",
}
except Exception as e:
return {
"success": False,
"url": url,
"destination": destination,
"error": f"Download error: {str(e)}",
}
async def move_local_file(source_path: str, destination: str) -> Dict[str, Any]:
"""移动本地文件到目标位置"""
start_time = datetime.now()
try:
# 检查源文件是否存在
if not os.path.exists(source_path):
return {
"success": False,
"source": source_path,
"destination": destination,
"error": f"Source file not found: {source_path}",
}
# 获取源文件信息
source_size = os.path.getsize(source_path)
# 确保目标目录存在
parent_dir = os.path.dirname(destination)
if parent_dir:
os.makedirs(parent_dir, exist_ok=True)
# 执行移动操作
shutil.move(source_path, destination)
# 计算操作时间
duration = (datetime.now() - start_time).total_seconds()
return {
"success": True,
"source": source_path,
"destination": destination,
"size": source_size,
"duration": duration,
"operation": "move",
}
except Exception as e:
return {
"success": False,
"source": source_path,
"destination": destination,
"error": f"Move error: {str(e)}",
}
@mcp.tool()
async def download_files(instruction: str) -> str:
"""
Download files from URLs or move local files mentioned in natural language instructions.
Args:
instruction: Natural language instruction containing URLs/local paths and optional destination paths
Returns:
Status message about the download/move operations
Examples:
- "Download https://example.com/file.pdf to documents folder"
- "Move /home/user/file.pdf to documents folder"
- "Please get https://raw.githubusercontent.com/user/repo/main/data.csv and save it to ~/downloads"
- "移动 ~/Desktop/report.docx 到 /tmp/documents/"
- "Download www.example.com/report.xlsx"
"""
urls = URLExtractor.extract_urls(instruction)
local_paths = LocalPathExtractor.extract_local_paths(instruction)
if not urls and not local_paths:
return format_error_message(
"Failed to parse instruction",
"No downloadable URLs or movable local files found",
)
target_path = PathExtractor.extract_target_path(instruction)
# 处理文件
results = []
# 处理URL下载
for url in urls:
try:
# 推断文件名
filename = URLExtractor.infer_filename_from_url(url)
# 构建完整的目标路径
if target_path:
# 处理路径
if target_path.startswith("~"):
target_path = os.path.expanduser(target_path)
# 确保使用相对路径(如果不是绝对路径)
if not os.path.isabs(target_path):
target_path = os.path.normpath(target_path)
# 判断是文件路径还是目录路径
if os.path.splitext(target_path)[1]: # 有扩展名,是文件
destination = target_path
else: # 是目录
destination = os.path.join(target_path, filename)
else:
# 默认下载到当前目录
destination = filename
# 检查文件是否已存在
if os.path.exists(destination):
results.append(
f"[WARNING] Skipped {url}: File already exists at {destination}"
)
continue
# 先检查URL是否可访问
check_result = await check_url_accessible(url)
if not check_result["accessible"]:
results.append(
f"[ERROR] Failed to access {url}: HTTP {check_result['status'] or 'Connection failed'}"
)
continue
# 执行下载
result = await download_file(url, destination)
# 执行转换(如果成功下载)
conversion_msg = None
if result["success"]:
conversion_msg = await perform_document_conversion(
destination, extract_images=True
)
# 格式化结果
msg = format_file_operation_result(
"download", url, destination, result, conversion_msg
)
except Exception as e:
msg = f"[ERROR] Failed to download: {url}\n"
msg += f" Error: {str(e)}"
results.append(msg)
# 处理本地文件移动
for local_path in local_paths:
try:
# 获取文件名
filename = os.path.basename(local_path)
# 构建完整的目标路径
if target_path:
# 处理路径
if target_path.startswith("~"):
target_path = os.path.expanduser(target_path)
# 确保使用相对路径(如果不是绝对路径)
if not os.path.isabs(target_path):
target_path = os.path.normpath(target_path)
# 判断是文件路径还是目录路径
if os.path.splitext(target_path)[1]: # 有扩展名,是文件
destination = target_path
else: # 是目录
destination = os.path.join(target_path, filename)
else:
# 默认移动到当前目录
destination = filename
# 检查目标文件是否已存在
if os.path.exists(destination):
results.append(
f"[WARNING] Skipped {local_path}: File already exists at {destination}"
)
continue
# 执行移动
result = await move_local_file(local_path, destination)
# 执行转换(如果成功移动)
conversion_msg = None
if result["success"]:
conversion_msg = await perform_document_conversion(
destination, extract_images=True
)
# 格式化结果
msg = format_file_operation_result(
"move", local_path, destination, result, conversion_msg
)
except Exception as e:
msg = f"[ERROR] Failed to move: {local_path}\n"
msg += f" Error: {str(e)}"
results.append(msg)
return "\n\n".join(results)
@mcp.tool()
async def parse_download_urls(text: str) -> str:
"""
Extract URLs, local paths and target paths from text without downloading or moving.
Args:
text: Text containing URLs, local paths and optional destination paths
Returns:
Parsed URLs, local paths and target path information
"""
urls = URLExtractor.extract_urls(text)
local_paths = LocalPathExtractor.extract_local_paths(text)
target_path = PathExtractor.extract_target_path(text)
content = "📋 Parsed file operation information:\n\n"
if urls:
content += f"🔗 URLs found ({len(urls)}):\n"
for i, url in enumerate(urls, 1):
filename = URLExtractor.infer_filename_from_url(url)
content += f" {i}. {url}\n 📄 Filename: {filename}\n"
else:
content += "🔗 No URLs found\n"
if local_paths:
content += f"\n📁 Local files found ({len(local_paths)}):\n"
for i, path in enumerate(local_paths, 1):
exists = os.path.exists(path)
content += f" {i}. {path}\n"
content += f" ✅ Exists: {'Yes' if exists else 'No'}\n"
if exists:
size_mb = os.path.getsize(path) / (1024 * 1024)
content += f" 📊 Size: {size_mb:.2f} MB\n"
else:
content += "\n📁 No local files found\n"
if target_path:
content += f"\n🎯 Target path: {target_path}"
if target_path.startswith("~"):
content += f"\n (Expanded: {os.path.expanduser(target_path)})"
else:
content += "\n🎯 Target path: Not specified (will use current directory)"
return content
@mcp.tool()
async def download_file_to(
url: str, destination: Optional[str] = None, filename: Optional[str] = None
) -> str:
"""
Download a specific file with detailed options.
Args:
url: URL to download from
destination: Target directory or full file path (optional)
filename: Specific filename to use (optional, ignored if destination is a full file path)
Returns:
Status message about the download operation
"""
# 确定文件名
if not filename:
filename = URLExtractor.infer_filename_from_url(url)
# 确定完整路径
if destination:
# 展开用户目录
if destination.startswith("~"):
destination = os.path.expanduser(destination)
# 检查是否是完整文件路径
if os.path.splitext(destination)[1]: # 有扩展名
target_path = destination
else: # 是目录
target_path = os.path.join(destination, filename)
else:
target_path = filename
# 确保使用相对路径(如果不是绝对路径)
if not os.path.isabs(target_path):
target_path = os.path.normpath(target_path)
# 检查文件是否已存在
if os.path.exists(target_path):
return format_error_message(
"Download aborted", f"File already exists at {target_path}"
)
# 先检查URL
check_result = await check_url_accessible(url)
if not check_result["accessible"]:
return format_error_message(
"Cannot access URL",
f"{url} (HTTP {check_result['status'] or 'Connection failed'})",
)
# 显示下载信息
size_mb = (
int(check_result["content_length"]) / (1024 * 1024)
if check_result["content_length"]
else 0
)
msg = "[INFO] Downloading file:\n"
msg += f" URL: {url}\n"
msg += f" Target: {target_path}\n"
if size_mb > 0:
msg += f" Expected size: {size_mb:.2f} MB\n"
msg += "\n"
# 执行下载
result = await download_file(url, target_path)
# 执行转换(如果成功下载)
conversion_msg = None
if result["success"]:
conversion_msg = await perform_document_conversion(
target_path, extract_images=True
)
# 添加下载信息前缀
actual_size_mb = result["size"] / (1024 * 1024)
speed_mb = result["speed"] / (1024 * 1024)
info_msg = "[SUCCESS] Download completed!\n"
info_msg += f" Saved to: {target_path}\n"
info_msg += f" Size: {actual_size_mb:.2f} MB\n"
info_msg += f" Duration: {result['duration']:.2f} seconds\n"
info_msg += f" Speed: {speed_mb:.2f} MB/s\n"
info_msg += f" Type: {result['content_type']}"
if conversion_msg:
info_msg += conversion_msg
return msg + info_msg
else:
return msg + f"[ERROR] Download failed!\n Error: {result['error']}"
@mcp.tool()
async def move_file_to(
source: str, destination: Optional[str] = None, filename: Optional[str] = None
) -> str:
"""
Move a local file to a new location with detailed options.
Args:
source: Source file path to move
destination: Target directory or full file path (optional)
filename: Specific filename to use (optional, ignored if destination is a full file path)
Returns:
Status message about the move operation
"""
# 展开源路径
if source.startswith("~"):
source = os.path.expanduser(source)
# 检查源文件是否存在
if not os.path.exists(source):
return format_error_message("Move aborted", f"Source file not found: {source}")
# 确定文件名
if not filename:
filename = os.path.basename(source)
# 确定完整路径
if destination:
# 展开用户目录
if destination.startswith("~"):
destination = os.path.expanduser(destination)
# 检查是否是完整文件路径
if os.path.splitext(destination)[1]: # 有扩展名
target_path = destination
else: # 是目录
target_path = os.path.join(destination, filename)
else:
target_path = filename
# 确保使用相对路径(如果不是绝对路径)
if not os.path.isabs(target_path):
target_path = os.path.normpath(target_path)
# 检查目标文件是否已存在
if os.path.exists(target_path):
return f"[ERROR] Target file already exists: {target_path}"
# 显示移动信息
source_size_mb = os.path.getsize(source) / (1024 * 1024)
msg = "[INFO] Moving file:\n"
msg += f" Source: {source}\n"
msg += f" Target: {target_path}\n"
msg += f" Size: {source_size_mb:.2f} MB\n"
msg += "\n"
# 执行移动
result = await move_local_file(source, target_path)
# 执行转换(如果成功移动)
conversion_msg = None
if result["success"]:
conversion_msg = await perform_document_conversion(
target_path, extract_images=True
)
# 添加移动信息前缀
info_msg = "[SUCCESS] File moved successfully!\n"
info_msg += f" From: {source}\n"
info_msg += f" To: {target_path}\n"
info_msg += f" Duration: {result['duration']:.2f} seconds"
if conversion_msg:
info_msg += conversion_msg
return msg + info_msg
else:
return msg + f"[ERROR] Move failed!\n Error: {result['error']}"
# @mcp.tool()
# async def convert_document_to_markdown(
# file_path: str, output_path: Optional[str] = None, extract_images: bool = True
# ) -> str:
# """
# Convert a document to Markdown format with image extraction support.
# Supports both local files and URLs. Uses docling for advanced conversion with image extraction,
# or falls back to PyPDF2 for simple PDF text extraction.
# Args:
# file_path: Path to the input document file or URL (supports PDF, DOCX, PPTX, HTML, TXT, MD)
# output_path: Path for the output Markdown file (optional, auto-generated if not provided)
# extract_images: Whether to extract images from the document (default: True)
# Returns:
# Status message about the conversion operation with preview of converted content
# Examples:
# - "convert_document_to_markdown('paper.pdf')"
# - "convert_document_to_markdown('https://example.com/doc.pdf', 'output.md')"
# - "convert_document_to_markdown('presentation.pptx', extract_images=False)"
# """
# # 检查是否为URL
# is_url_input = False
# try:
# parsed = urlparse(file_path)
# is_url_input = parsed.scheme in ("http", "https")
# except Exception:
# is_url_input = False
# # 检查文件是否存在(如果不是URL)
# if not is_url_input and not os.path.exists(file_path):
# return f"[ERROR] Input file not found: {file_path}"
# # 检查是否是PDF文件,优先使用简单转换器(仅对本地文件)
# if (
# not is_url_input
# and file_path.lower().endswith(".pdf")
# and PYPDF2_AVAILABLE
# and not extract_images
# ):
# try:
# simple_converter = SimplePdfConverter()
# result = simple_converter.convert_pdf_to_markdown(file_path, output_path)
# except Exception as e:
# return f"[ERROR] PDF conversion error: {str(e)}"
# elif DOCLING_AVAILABLE:
# try:
# converter = DoclingConverter()
# # 检查文件格式是否支持
# if not is_url_input and not converter.is_supported_format(file_path):
# supported_formats = [".pdf", ".docx", ".pptx", ".html", ".md", ".txt"]
# return f"[ERROR] Unsupported file format. Supported formats: {', '.join(supported_formats)}"
# elif is_url_input and not file_path.lower().endswith(
# (".pdf", ".docx", ".pptx", ".html", ".md", ".txt")
# ):
# return f"[ERROR] Unsupported URL format: {file_path}"
# # 执行转换(支持图片提取)
# result = converter.convert_to_markdown(
# file_path, output_path, extract_images
# )
# except Exception as e:
# return f"[ERROR] Docling conversion error: {str(e)}"
# else:
# return (
# "[ERROR] No conversion tools available. Please install docling or PyPDF2."
# )
# if result["success"]:
# msg = "[SUCCESS] Document converted successfully!\n"
# msg += f" Input: {result['input_file']}\n"
# msg += f" Output file: {result['output_file']}\n"
# msg += f" Conversion time: {result['duration']:.2f} seconds\n"
# if result["input_size"] > 0:
# msg += f" Original size: {result['input_size'] / 1024:.1f} KB\n"
# msg += f" Markdown size: {result['output_size'] / 1024:.1f} KB\n"
# # 显示图片提取信息
# if extract_images and "images_extracted" in result:
# images_count = result["images_extracted"]
# if images_count > 0:
# msg += f" Images extracted: {images_count}\n"
# msg += f" Images saved to: {os.path.join(os.path.dirname(result['output_file']), 'images')}\n"
# else:
# msg += " No images found in document\n"
# # 显示Markdown内容的前几行作为预览
# content_lines = result["markdown_content"].split("\n")
# preview_lines = content_lines[:5]
# if len(content_lines) > 5:
# preview_lines.append("...")
# msg += "\n[PREVIEW] First few lines of converted Markdown:\n"
# for line in preview_lines:
# msg += f" {line}\n"
# else:
# msg = "[ERROR] Conversion failed!\n"
# msg += f" Error: {result['error']}"
# return msg
if __name__ == "__main__":
print("📄 Smart PDF Downloader MCP Tool")
print("📝 Starting server with FastMCP...")
if DOCLING_AVAILABLE:
print("✅ Document conversion to Markdown is ENABLED (docling available)")
else:
print("❌ Document conversion to Markdown is DISABLED (docling not available)")
print(" Install docling to enable: pip install docling")
print("\nAvailable tools:")
print(
" • download_files - Download files or move local files from natural language"
)
print(" • parse_download_urls - Extract URLs, local paths and destination paths")
print(" • download_file_to - Download a specific file with options")
print(" • move_file_to - Move a specific local file with options")
print(" • convert_document_to_markdown - Convert documents to Markdown format")
if DOCLING_AVAILABLE:
print("\nSupported formats: PDF, DOCX, PPTX, HTML, TXT, MD")
print("Features: Image extraction, Layout preservation, Automatic conversion")
print("")
# 运行服务器
mcp.run()