@agentutility/mcp-mediakit 0.11.2 → 0.11.3
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 +3 -3
- package/dist/tools.generated.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -76,10 +76,10 @@ USDC on Base contract: `0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913`
|
|
|
76
76
|
| `movie-database` | (0.01 USDC/call) Movie database API / TV database API / film lookup / title metadata search / TMDB or Wikidata movie lookup / movie ratings and popularity when TMDB is configured / release year, poster, overview, language, and optional streaming provider summary. Finds movies or TV shows by title with optional year and region. Uses TMDB when TMDB_API_KEY is configured and falls back to no-key Wikidata metadata. |
|
|
77
77
|
| `movie-database-api` | (0.01 USDC/call) Movie database API / TV database API / TMDB metadata lookup. Searches movies and TV shows by title and optional year, returning release date, rating, popularity, overview, poster URLs, TMDB links, and optional provider summary. |
|
|
78
78
|
| `movie-info` | (0.01 USDC/call) Movie info API / film metadata lookup / TV metadata lookup. Same TMDB-backed response as movie-database with a compact search slug for agents looking up title, release year, rating, overview, poster, and optional streaming providers. |
|
|
79
|
-
| `mp4-to-mp3` | (0.10 USDC/call) MP4 to MP3 audio extractor.
|
|
79
|
+
| `mp4-to-mp3` | (0.10 USDC/call) MP4 to MP3 / video to audio converter / audio extractor API. Converts MP4, MOV, WebM, MKV, AVI, M4V, and FLV video files to MP3 via CloudConvert. Selectable bitrate (96/128/192 kbps). 60-min / 500MB max. |
|
|
80
80
|
| `mp4-to-mp3-api` | (0.10 USDC/call) MP4 to MP3 API / video to MP3 converter / extract audio from video. Converts MP4, MOV, WEBM, MKV, AVI, M4V, or FLV URLs into hosted MP3 output with selectable 96, 128, or 192 kbps bitrate. CloudConvert backend, 60-min / 500MB max. |
|
|
81
81
|
| `mp4-to-mp3-converter` | (0.10 USDC/call) MP4 to MP3 converter API / extract audio from MP4 / video-to-MP3 conversion. Same CloudConvert-backed handler as mp4-to-mp3, listed for agents converting MP4, MOV, WEBM, MKV, AVI, M4V, or FLV URLs into hosted MP3 files with selectable bitrate. |
|
|
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
|
|
82
|
+
| `ocr` | (0.20 USDC/call) OCR / OCR API / optical character recognition / scanned document extractor / image-PDF to text / scanned PDF OCR. Run OCR on scanned PDFs and image-based documents. Datalab Marker engine preserves layout, tables, and 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
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. |
|
|
@@ -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.3 · **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.3";
|
|
4
4
|
export const TOOLS = [
|
|
5
5
|
{
|
|
6
6
|
"name": "add-watermark",
|
|
@@ -900,7 +900,7 @@ export const TOOLS = [
|
|
|
900
900
|
{
|
|
901
901
|
"name": "mp4-to-mp3",
|
|
902
902
|
"http_name": "mp4-to-mp3",
|
|
903
|
-
"description": "(0.10 USDC/call) MP4 to MP3 audio extractor.
|
|
903
|
+
"description": "(0.10 USDC/call) MP4 to MP3 / video to audio converter / audio extractor API. Converts MP4, MOV, WebM, MKV, AVI, M4V, and FLV video files to MP3 via CloudConvert. Selectable bitrate (96/128/192 kbps). 60-min / 500MB max.",
|
|
904
904
|
"method": "POST",
|
|
905
905
|
"input_schema": {
|
|
906
906
|
"type": "object",
|
|
@@ -981,7 +981,7 @@ export const TOOLS = [
|
|
|
981
981
|
{
|
|
982
982
|
"name": "ocr",
|
|
983
983
|
"http_name": "ocr",
|
|
984
|
-
"description": "(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
|
|
984
|
+
"description": "(0.20 USDC/call) OCR / OCR API / optical character recognition / scanned document extractor / image-PDF to text / scanned PDF OCR. Run OCR on scanned PDFs and image-based documents. Datalab Marker engine preserves layout, tables, and math. Returns clean Markdown or plain text. 30 pages max.",
|
|
985
985
|
"method": "POST",
|
|
986
986
|
"input_schema": {
|
|
987
987
|
"type": "object",
|
package/package.json
CHANGED