lightpdf-aipdf-mcp 0.1.141__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 +7 -7
- {lightpdf_aipdf_mcp-0.1.141.dist-info → lightpdf_aipdf_mcp-0.1.143.dist-info}/METADATA +1 -1
- {lightpdf_aipdf_mcp-0.1.141.dist-info → lightpdf_aipdf_mcp-0.1.143.dist-info}/RECORD +5 -5
- {lightpdf_aipdf_mcp-0.1.141.dist-info → lightpdf_aipdf_mcp-0.1.143.dist-info}/WHEEL +0 -0
- {lightpdf_aipdf_mcp-0.1.141.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": {
|
@@ -583,7 +583,7 @@ async def handle_list_tools() -> list[types.Tool]:
|
|
583
583
|
),
|
584
584
|
types.Tool(
|
585
585
|
name="remove_watermark",
|
586
|
-
description="Remove watermarks from PDF files.",
|
586
|
+
description="Remove watermarks from PDF files. Watermarks are usually overlaid text or images added for copyright protection or branding purposes. This tool specifically targets watermark removal and is not intended for deleting regular document text content. For deleting normal document text, use the replace_text tool instead.",
|
587
587
|
inputSchema={
|
588
588
|
"type": "object",
|
589
589
|
"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": {
|
@@ -1164,7 +1164,7 @@ async def handle_list_tools() -> list[types.Tool]:
|
|
1164
1164
|
),
|
1165
1165
|
types.Tool(
|
1166
1166
|
name="replace_text",
|
1167
|
-
description="Replace or delete text in PDF files. When new_text is empty, the old_text will be deleted from the PDF.",
|
1167
|
+
description="Replace, edit, or delete regular text content in PDF files. Use this tool to modify or remove normal document text. When new_text is empty, the old_text will be completely deleted from the PDF. Note: This tool is for regular document text only, not for removing watermarks. For watermark removal, use the remove_watermark tool instead.",
|
1168
1168
|
inputSchema={
|
1169
1169
|
"type": "object",
|
1170
1170
|
"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.141.dist-info → lightpdf_aipdf_mcp-0.1.143.dist-info}/entry_points.txt
RENAMED
File without changes
|