pdfco-mcp 0.1.0__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.
- pdfco/mcp/__init__.py +8 -0
- pdfco/mcp/models.py +68 -0
- pdfco/mcp/server.py +3 -0
- pdfco/mcp/services/__init__.py +0 -0
- pdfco/mcp/services/client.py +49 -0
- pdfco/mcp/services/pdf.py +95 -0
- pdfco/mcp/tools/__init__.py +0 -0
- pdfco/mcp/tools/apis/conversion.py +371 -0
- pdfco/mcp/tools/apis/document.py +25 -0
- pdfco/mcp/tools/apis/editing.py +71 -0
- pdfco/mcp/tools/apis/extraction.py +42 -0
- pdfco/mcp/tools/apis/file.py +32 -0
- pdfco/mcp/tools/apis/form.py +102 -0
- pdfco/mcp/tools/apis/job.py +82 -0
- pdfco/mcp/tools/apis/modification.py +43 -0
- pdfco/mcp/tools/apis/search.py +54 -0
- pdfco/mcp/tools/apis/searchable.py +58 -0
- pdfco/mcp/tools/apis/security.py +96 -0
- pdfco_mcp-0.1.0.dist-info/METADATA +33 -0
- pdfco_mcp-0.1.0.dist-info/RECORD +22 -0
- pdfco_mcp-0.1.0.dist-info/WHEEL +4 -0
- pdfco_mcp-0.1.0.dist-info/entry_points.txt +2 -0
@@ -0,0 +1,22 @@
|
|
1
|
+
pdfco/mcp/__init__.py,sha256=S-GhB7vAGoUDpg47kP74gKck2XFJ_2UNjgpxqGS774U,256
|
2
|
+
pdfco/mcp/models.py,sha256=pnU9e18fQHrab27sYG1qr7ORhAkVFk70WpAkXSisu9Q,5602
|
3
|
+
pdfco/mcp/server.py,sha256=5pBIKZJJ3Um5LsdrT9HvlGy4oB4n6t5Opu8razv2A5A,63
|
4
|
+
pdfco/mcp/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
|
+
pdfco/mcp/services/client.py,sha256=v9pKh7Kwan8w27XBkeDMKHmDVzeixzC1Yuj5YWKmvJU,1497
|
6
|
+
pdfco/mcp/services/pdf.py,sha256=CL1kiZew9GOgbmeaFf0ecjCSFAc-U1G9ySvV2ueSGSY,4135
|
7
|
+
pdfco/mcp/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
|
+
pdfco/mcp/tools/apis/conversion.py,sha256=6snda-ZmZz81Mgf0o7FF9DUkRWzRfMHTWF-0-cxSvt8,34285
|
9
|
+
pdfco/mcp/tools/apis/document.py,sha256=-_gJC0MrziZWfqn-akZZdSNpN75NryJEPLQEwE5Yh5Q,1163
|
10
|
+
pdfco/mcp/tools/apis/editing.py,sha256=aQbRNakUhlj9mYew8BjTweA5wEXVq2z1-WH0DiWptes,4475
|
11
|
+
pdfco/mcp/tools/apis/extraction.py,sha256=cnXQjCZ2PBwBUWNEiAUGMZJbN_6I3ZLdGqdDWEfUrRc,1683
|
12
|
+
pdfco/mcp/tools/apis/file.py,sha256=nWaSlG4Okcc30f2kfi8w28QeJBgeR2khcXoAxM6cpEU,966
|
13
|
+
pdfco/mcp/tools/apis/form.py,sha256=irPlTPiJjrBWJIplpt0YC7BaRduFdP2SXQ-Y444Pa94,4213
|
14
|
+
pdfco/mcp/tools/apis/job.py,sha256=1Fv28EFy6oOeB_WFM4gMCN7XPX2HIxWV3uV8sl6SZEU,3035
|
15
|
+
pdfco/mcp/tools/apis/modification.py,sha256=GcZTI0z3PVSyuSOOHHPsqX590mWM4yRBhewMfdUKiHs,2509
|
16
|
+
pdfco/mcp/tools/apis/search.py,sha256=4_FBBcIB4PpZ_E_ExDwlTXUEHaoiCEgyfXkFcYM117E,2982
|
17
|
+
pdfco/mcp/tools/apis/searchable.py,sha256=7HEs-Siz8rUZbyxV0jS81uLQZJejJpb5SWNDZOBVHCU,3168
|
18
|
+
pdfco/mcp/tools/apis/security.py,sha256=CGVXnCvHyPbSeKWAlExlsVELgn_Vtd4U_nt1IuY3NUs,5176
|
19
|
+
pdfco_mcp-0.1.0.dist-info/METADATA,sha256=AH4RBNvwwrY8JNrDwW6FUDeaQn7IzUbdgLe5zGf1WL0,652
|
20
|
+
pdfco_mcp-0.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
21
|
+
pdfco_mcp-0.1.0.dist-info/entry_points.txt,sha256=Ja_Ud8LbrhKYUmQMo6hxd11SQX_vx7cwrqvco6ClwB4,45
|
22
|
+
pdfco_mcp-0.1.0.dist-info/RECORD,,
|