@agentutility/mcp-mediakit 0.11.1 → 0.11.2
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.
- package/README.md +2 -2
- package/dist/tools.generated.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -82,7 +82,7 @@ USDC on Base contract: `0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913`
|
|
|
82
82
|
| `ocr` | (0.20 USDC/call) OCR / optical character recognition / scanned document extractor / image-PDF to text. Run OCR on scanned PDFs and image-based documents. Datalab Marker engine — preserves layout, tables, math. Returns clean Markdown or plain text. 30 pages max. |
|
|
83
83
|
| `office-to-pdf` | (0.05 USDC/call) Office to PDF converter — DOCX/DOC, XLSX/XLS, PPTX/PPT, ODT/ODS/ODP, RTF, TXT, CSV, EPUB, MD, HTML, Apple Pages/Numbers/Keynote to PDF. CloudConvert engine. |
|
|
84
84
|
| `pdf-compress` | (0.005 USDC/call) PDF compressor / shrink PDF / PDF size reducer / smaller PDF for email. Three quality levels: ebook (lowest, web-quality), printer (medium), prepress (highest, archival). CloudConvert engine. |
|
|
85
|
-
| `pdf-extract-tables` | (0.10 USDC/call) PDF table extractor / table from PDF / scanned-table parsing / financial-table OCR / multi-page table consolidator / Datalab Marker tables. AI + OCR pipeline that finds every table in a PDF (digital or scanned) and returns row × column text matrices, page-by-page. Optional cell bounding boxes for downstream layout reconstruction. Optional page_range filter ('1-5', '3', '1,3,5'). Handles merged headers, multi-page financial statements, balance sheets, lab results, scanned reports. 30 pages max. Sibling of pdf-to-markdown using the same Datalab backend, but pre-parsed to tables only. |
|
|
85
|
+
| `pdf-extract-tables` | (0.10 USDC/call) PDF table extractor / extract tables / table from PDF / scanned-table parsing / financial-table OCR / multi-page table consolidator / Datalab Marker tables. AI + OCR pipeline that finds every table in a PDF (digital or scanned) and returns row × column text matrices, page-by-page. Optional cell bounding boxes for downstream layout reconstruction. Optional page_range filter ('1-5', '3', '1,3,5'). Handles merged headers, multi-page financial statements, balance sheets, lab results, scanned reports. 30 pages max. Sibling of pdf-to-markdown using the same Datalab backend, but pre-parsed to tables only. |
|
|
86
86
|
| `pdf-merge` | (0.01 USDC/call) PDF merger / PDF combiner / PDF concatenator. 2-50 PDFs from URLs to single PDF. Preserves bookmarks. CloudConvert engine. |
|
|
87
87
|
| `pdf-parser-api` | (0.20 USDC/call) PDF parser API / PDF content extractor / scanned PDF OCR API. Parses a public PDF URL into Markdown, HTML, or JSON blocks with layout-aware text, headings, tables, and equations. Datalab Marker backend, 30 pages max. |
|
|
88
88
|
| `pdf-split` | (0.04 USDC/call) PDF splitter / PDF page extractor. Two modes: page ranges (['1-3','5','7-end']) or one PDF per source page. CloudConvert engine. |
|
|
@@ -137,4 +137,4 @@ The agent never sees the payment flow — it just gets the result.
|
|
|
137
137
|
|
|
138
138
|
---
|
|
139
139
|
|
|
140
|
-
**Version:** 0.11.
|
|
140
|
+
**Version:** 0.11.2 · **License:** MIT
|
package/dist/tools.generated.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/** Auto-generated by scripts/generate-mcp-clusters.mjs. Do not edit by hand. */
|
|
2
2
|
export const CLUSTER_SLUG = "mediakit";
|
|
3
|
-
export const VERSION = "0.11.
|
|
3
|
+
export const VERSION = "0.11.2";
|
|
4
4
|
export const TOOLS = [
|
|
5
5
|
{
|
|
6
6
|
"name": "add-watermark",
|
|
@@ -1052,7 +1052,7 @@ export const TOOLS = [
|
|
|
1052
1052
|
{
|
|
1053
1053
|
"name": "pdf-extract-tables",
|
|
1054
1054
|
"http_name": "pdf-extract-tables",
|
|
1055
|
-
"description": "(0.10 USDC/call) PDF table extractor / table from PDF / scanned-table parsing / financial-table OCR / multi-page table consolidator / Datalab Marker tables. AI + OCR pipeline that finds every table in a PDF (digital or scanned) and returns row × column text matrices, page-by-page. Optional cell bounding boxes for downstream layout reconstruction. Optional page_range filter ('1-5', '3', '1,3,5'). Handles merged headers, multi-page financial statements, balance sheets, lab results, scanned reports. 30 pages max. Sibling of pdf-to-markdown using the same Datalab backend, but pre-parsed to tables only.",
|
|
1055
|
+
"description": "(0.10 USDC/call) PDF table extractor / extract tables / table from PDF / scanned-table parsing / financial-table OCR / multi-page table consolidator / Datalab Marker tables. AI + OCR pipeline that finds every table in a PDF (digital or scanned) and returns row × column text matrices, page-by-page. Optional cell bounding boxes for downstream layout reconstruction. Optional page_range filter ('1-5', '3', '1,3,5'). Handles merged headers, multi-page financial statements, balance sheets, lab results, scanned reports. 30 pages max. Sibling of pdf-to-markdown using the same Datalab backend, but pre-parsed to tables only.",
|
|
1056
1056
|
"method": "POST",
|
|
1057
1057
|
"input_schema": {
|
|
1058
1058
|
"type": "object",
|
package/package.json
CHANGED