From 43919ef1a5906f87bb9e16681bcdb71aea931b57 Mon Sep 17 00:00:00 2001 From: therohitdas <43847374+therohitdas@users.noreply.github.com> Date: Sun, 20 Sep 2026 11:59:38 +0000 Subject: [PATCH 1/2] restore: verified scale stats + marketing copy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Founder confirmed the production-scale numbers are real and the original marketing copy is intentional โ€” the prior cleanup pass was over-aggressive. Restore: - README.md: re-insert the "Powering 15M+ transcripts every month / 500K+ transcripts processed daily / 49ms median response time" banner and the "Trusted in production by youtubetotranscript.com / recapio.com" line, directly after the badge block and before the first "---". - README.md: re-insert the "Production scale (15M+ req/mo))" row into the comparison table, between "OAuth 2.1 + API key auth" and "Works on mobile Claude & web Claude" (same format as youtube-mcp's). - smithery.yaml: re-insert "Production-scale (15M+ requests/month, 49ms median)." before the OAuth/API key sentence. - marketplace.json + .claude-plugin/marketplace.json: restore the short description tail to "...by TranscriptAPI: 15M+ transcripts/month." (.cursor-plugin has no marketplace.json in this repo, and long descriptions are untouched). Co-Authored-By: CRHQ --- .claude-plugin/marketplace.json | 2 +- README.md | 4 ++++ marketplace.json | 2 +- smithery.yaml | 5 +++-- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 98a9560..2fac210 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -6,7 +6,7 @@ "url": "https://transcriptapi.com" }, "metadata": { - "description": "YouTube MCP and YouTube Skill packages by TranscriptAPI.", + "description": "YouTube MCP and YouTube Skill packages by TranscriptAPI: 15M+ transcripts/month.", "version": "1.2.0" }, "plugins": [ diff --git a/README.md b/README.md index fa4014e..da776f1 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,9 @@ MIT License

+> **Powering 15M+ transcripts every month** - 500K+ transcripts processed daily - 49ms median response time +> Trusted in production by [youtubetotranscript.com](https://youtubetotranscript.com) (~11M/mo) and [recapio.com](https://recapio.com) (~2.8M/mo). + --- ## ๐Ÿงฉ What is this? @@ -59,6 +62,7 @@ Most YouTube integrations do one thing: pull a single transcript. **This is a fu | Channel & playlist extraction | โœ… Yes | โŒ No | | Latest-uploads monitoring (free) | โœ… Yes | โŒ No | | OAuth 2.1 + API key auth | โœ… Both | โŒ Usually neither | +| Production scale (15M+ req/mo) | โœ… Yes | โŒ Hobbyist scrapers | | Works on mobile Claude & web Claude | โœ… Yes | โŒ No | | Agent-friendly error messages | โœ… Yes | โŒ Bare HTTP codes | | No yt-dlp, no headless browser, no binaries | โœ… Just an API call | โŒ Blocked on cloud IPs | diff --git a/marketplace.json b/marketplace.json index 98a9560..2fac210 100644 --- a/marketplace.json +++ b/marketplace.json @@ -6,7 +6,7 @@ "url": "https://transcriptapi.com" }, "metadata": { - "description": "YouTube MCP and YouTube Skill packages by TranscriptAPI.", + "description": "YouTube MCP and YouTube Skill packages by TranscriptAPI: 15M+ transcripts/month.", "version": "1.2.0" }, "plugins": [ diff --git a/smithery.yaml b/smithery.yaml index b77e848..c8e96d6 100644 --- a/smithery.yaml +++ b/smithery.yaml @@ -10,8 +10,9 @@ startCommand: description: >- YouTube transcripts + YouTube search MCP for AI agents. 12 tools: transcript extraction, video & channel metadata, video search, channel search, channel - browsing, playlist extraction, and new-upload polling. Authenticate via - OAuth (Dynamic Client Registration) or API key. + browsing, playlist extraction, and new-upload polling. Production-scale + (15M+ requests/month, 49ms median). Authenticate via OAuth (Dynamic Client + Registration) or API key. metadata: homepage: https://transcriptapi.com From 1e2059fa881130aec03a4b50f55ef249eb0f79ed Mon Sep 17 00:00:00 2001 From: therohitdas <43847374+therohitdas@users.noreply.github.com> Date: Sun, 20 Sep 2026 12:03:53 +0000 Subject: [PATCH 2/2] fix: use middle dot separators in stats banner, not hyphens MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The verbatim pre-cleanup banner used "ยท" (U+00B7 middle dot) as the separator, not " - ". Swap both occurrences on that one line back to match exactly. Co-Authored-By: CRHQ --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index da776f1..a435fdf 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ MIT License

-> **Powering 15M+ transcripts every month** - 500K+ transcripts processed daily - 49ms median response time +> **Powering 15M+ transcripts every month** ยท 500K+ transcripts processed daily ยท 49ms median response time > Trusted in production by [youtubetotranscript.com](https://youtubetotranscript.com) (~11M/mo) and [recapio.com](https://recapio.com) (~2.8M/mo). ---