lightpdf-aipdf-mcp 0.1.142__py3-none-any.whl → 0.1.143__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- lightpdf_aipdf_mcp/server.py +5 -5
- {lightpdf_aipdf_mcp-0.1.142.dist-info → lightpdf_aipdf_mcp-0.1.143.dist-info}/METADATA +1 -1
- {lightpdf_aipdf_mcp-0.1.142.dist-info → lightpdf_aipdf_mcp-0.1.143.dist-info}/RECORD +5 -5
- {lightpdf_aipdf_mcp-0.1.142.dist-info → lightpdf_aipdf_mcp-0.1.143.dist-info}/WHEEL +0 -0
- {lightpdf_aipdf_mcp-0.1.142.dist-info → lightpdf_aipdf_mcp-0.1.143.dist-info}/entry_points.txt +0 -0
lightpdf_aipdf_mcp/server.py
CHANGED
@@ -481,7 +481,7 @@ async def handle_list_tools() -> list[types.Tool]:
|
|
481
481
|
return [
|
482
482
|
types.Tool(
|
483
483
|
name="convert_document",
|
484
|
-
description="Document format conversion tool.\n\nPDF can be converted to: DOCX, XLSX, PPTX, images (including long images), HTML, TXT (text extraction), CSV, MD (Markdown), or TEX (LaTeX).\nOther formats (DOCX, XLSX, PPTX, images, CAD, CAJ, OFD, HTML, TEX (LaTeX), TXT, ODT) can be converted to PDF. For HTML to PDF, both local HTML files and any web page URL are supported.\n\nPDF to PDF conversion is not supported.\nOnly entire files can be converted.\
|
484
|
+
description="Document format conversion tool.\n\nPDF can be converted to: DOCX, XLSX, PPTX, images (including long images), HTML, TXT (text extraction), CSV, MD (Markdown), or TEX (LaTeX).\nOther formats (DOCX, XLSX, PPTX, images, CAD, CAJ, OFD, HTML, TEX (LaTeX), TXT, ODT) can be converted to PDF. For HTML to PDF, both local HTML files and any web page URL are supported.\n\nPDF to PDF conversion is not supported.\nOnly entire files can be converted.\n\nImportant distinctions:\n- For content-based PDF creation from LaTeX code, use create_pdf tool instead\n- For extracting embedded images from PDFs, use extract_images tool instead\n- For text recognition from scanned/image PDFs, use ocr_document tool instead\n- PDF-to-TXT conversion here extracts existing text; for scanned documents use OCR\n- PDF-to-image conversion creates images of PDF pages; extract_images gets embedded images\n\nThis tool is strictly for file format conversion only.",
|
485
485
|
inputSchema={
|
486
486
|
"type": "object",
|
487
487
|
"properties": {
|
@@ -779,7 +779,7 @@ async def handle_list_tools() -> list[types.Tool]:
|
|
779
779
|
),
|
780
780
|
types.Tool(
|
781
781
|
name="protect_pdf",
|
782
|
-
description="Add password protection to PDF files.",
|
782
|
+
description="Add password protection to PDF files. This tool adds a user password (open password) that is required to open and view the PDF document. Note: This is different from restrict_printing which sets permission restrictions - use restrict_printing if you want to control printing permissions specifically.",
|
783
783
|
inputSchema={
|
784
784
|
"type": "object",
|
785
785
|
"properties": {
|
@@ -1018,7 +1018,7 @@ async def handle_list_tools() -> list[types.Tool]:
|
|
1018
1018
|
),
|
1019
1019
|
types.Tool(
|
1020
1020
|
name="extract_images",
|
1021
|
-
description="Extract image resources from all pages of a PDF, supporting multiple image formats.",
|
1021
|
+
description="Extract embedded image resources from all pages of a PDF, supporting multiple image formats. This tool extracts actual images that are embedded within the PDF file. Note: This is different from convert_document PDF-to-image conversion, which converts PDF pages into image files - use convert_document if you want to convert PDF pages to images.",
|
1022
1022
|
inputSchema={
|
1023
1023
|
"type": "object",
|
1024
1024
|
"properties": {
|
@@ -1088,7 +1088,7 @@ async def handle_list_tools() -> list[types.Tool]:
|
|
1088
1088
|
),
|
1089
1089
|
types.Tool(
|
1090
1090
|
name="restrict_printing",
|
1091
|
-
description="Restrict PDF printing permission. This tool
|
1091
|
+
description="Restrict PDF printing permission. This tool sets permission restrictions (owner password) to control what users can do with the PDF - specifically preventing printing. Note: This is different from protect_pdf which adds a user password to open the document - use protect_pdf if you want to prevent unauthorized access to the document.",
|
1092
1092
|
inputSchema={
|
1093
1093
|
"type": "object",
|
1094
1094
|
"properties": {
|
@@ -1271,7 +1271,7 @@ async def handle_list_tools() -> list[types.Tool]:
|
|
1271
1271
|
),
|
1272
1272
|
types.Tool(
|
1273
1273
|
name="ocr_document",
|
1274
|
-
description="Perform OCR on documents. Supports PDF, DOCX, PPTX, XLSX, and TXT formats. Output as the specified format file.",
|
1274
|
+
description="Perform OCR (Optical Character Recognition) on documents to recognize and extract text from scanned documents or images. Supports PDF, DOCX, PPTX, XLSX, and TXT formats. Output as the specified format file. Note: Use this tool for scanned documents or image-based PDFs where text needs to be recognized. For regular PDF text extraction, use convert_document PDF-to-TXT conversion instead.",
|
1275
1275
|
inputSchema={
|
1276
1276
|
"type": "object",
|
1277
1277
|
"properties": {
|
@@ -4,10 +4,10 @@ lightpdf_aipdf_mcp/converter.py,sha256=r8iO5R5vLNNKWdb6WSnwzTwwmp2TvgLXSIvvA4y__
|
|
4
4
|
lightpdf_aipdf_mcp/create_pdf.py,sha256=oALIhOBo60D3Gu_li7d7FF0COhFfSTM-BJpc63r9iAs,2465
|
5
5
|
lightpdf_aipdf_mcp/editor.py,sha256=BR-sWW9L7tybEPOhdc8W-uwdBoom19EPTmGDvy_2gMc,27941
|
6
6
|
lightpdf_aipdf_mcp/ocr.py,sha256=IyzxisA6qtXcGTHZofpUYXYDdcIjUaaHcVUKpM7DH9A,2832
|
7
|
-
lightpdf_aipdf_mcp/server.py,sha256=
|
7
|
+
lightpdf_aipdf_mcp/server.py,sha256=rBSp_x51nkEWn8L95qOXeXVKAJY-8v6Uc2QQt3GNdoo,79530
|
8
8
|
lightpdf_aipdf_mcp/summarizer.py,sha256=2QMMgo_xxlEDSd_STPh7-1lBc4VRsL4SPSTijJPyb3I,5456
|
9
9
|
lightpdf_aipdf_mcp/translator.py,sha256=nuZa4FpsA0xeRWAEGqSPIM55aJuazJX1m32uajowo7I,2778
|
10
|
-
lightpdf_aipdf_mcp-0.1.
|
11
|
-
lightpdf_aipdf_mcp-0.1.
|
12
|
-
lightpdf_aipdf_mcp-0.1.
|
13
|
-
lightpdf_aipdf_mcp-0.1.
|
10
|
+
lightpdf_aipdf_mcp-0.1.143.dist-info/METADATA,sha256=6cFx5rhLHrIpUtPcvmkLXkFlBQViQjH0ZGISIsie6ac,8120
|
11
|
+
lightpdf_aipdf_mcp-0.1.143.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
12
|
+
lightpdf_aipdf_mcp-0.1.143.dist-info/entry_points.txt,sha256=X7TGUe52N4sYH-tYt0YUGApeJgw-efQlZA6uAZmlmr4,63
|
13
|
+
lightpdf_aipdf_mcp-0.1.143.dist-info/RECORD,,
|
File without changes
|
{lightpdf_aipdf_mcp-0.1.142.dist-info → lightpdf_aipdf_mcp-0.1.143.dist-info}/entry_points.txt
RENAMED
File without changes
|