<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: MK</title>
    <description>The latest articles on DEV Community by MK (@mkirovbg).</description>
    <link>https://dev.to/mkirovbg</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3966121%2F47360137-c5c3-4fc7-876a-2b07b43119ca.jpeg</url>
      <title>DEV Community: MK</title>
      <link>https://dev.to/mkirovbg</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mkirovbg"/>
    <language>en</language>
    <item>
      <title>Here is something to talk about, Stop copy-pasting YouTube transcripts into Claude — wire it up with MCP</title>
      <dc:creator>MK</dc:creator>
      <pubDate>Wed, 03 Jun 2026 09:01:13 +0000</pubDate>
      <link>https://dev.to/mkirovbg/here-is-something-to-talk-about-stop-copy-pasting-youtube-transcripts-into-claude-wire-it-up-3859</link>
      <guid>https://dev.to/mkirovbg/here-is-something-to-talk-about-stop-copy-pasting-youtube-transcripts-into-claude-wire-it-up-3859</guid>
      <description>&lt;p&gt;Hey 👋 — sharing something I've been working on lately, in case it's useful to anyone doing similar stuff.&lt;/p&gt;

&lt;p&gt;Quick context: I use Claude a &lt;em&gt;lot&lt;/em&gt; for digging through YouTube — conference talks, tutorials, the occasional 2-hour podcast. And the workflow was always the same annoying dance: open the video, click "Show transcript," copy the wall of text, paste it into Claude, ask my question. Every. Single. Time. And you lose the timestamps, so when Claude says "they mention X around the middle," you can't easily jump back and check.&lt;/p&gt;

&lt;p&gt;At some point it bugged me enough that I built a little thing to fix it. It's an &lt;strong&gt;MCP server&lt;/strong&gt; — basically a small program that hands Claude (or Cursor / Windsurf) a set of YouTube tools so it can just… do the fetching itself. I called it Scribefy. &lt;em&gt;(Heads up: it's my own project, so take the plug with the appropriate grain of salt — but the how-it-works bits apply to any YouTube MCP server.)&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What it actually does
&lt;/h2&gt;

&lt;p&gt;Once it's plugged in, the assistant gets four tools:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;search_videos&lt;/code&gt; — search YouTube&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;get_video_metadata&lt;/code&gt; — title, channel, length, whether it even has captions&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;get_related_videos&lt;/code&gt; — the "up next" list&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;extract_transcript&lt;/code&gt; — the full transcript, &lt;em&gt;with timestamps&lt;/em&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So now I just paste a URL and say "summarize this with timestamps," or even "find me 3 videos on X and tell me where they disagree" — and it figures out the rest. No copy-paste.&lt;/p&gt;

&lt;h2&gt;
  
  
  Who it's actually handy for
&lt;/h2&gt;

&lt;p&gt;It started as a "scratch my own itch" thing, but the use cases turned out way broader than I expected. A few that keep coming up:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Students&lt;/strong&gt; — drop in a 90-minute lecture and get the 10 things you actually need for the exam, with timestamps to the parts worth rewatching. Beats scrubbing the progress bar hunting for that one slide you half-remember.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Researchers&lt;/strong&gt; — treat a stack of talks/interviews like a mini literature review: &lt;em&gt;"what do these five videos agree and disagree on?"&lt;/em&gt; — and get quotes you can cite back to the exact second.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Content creators&lt;/strong&gt; — see what's already been said on a topic before you film, or turn one of your own videos into show notes, a blog post, and a thread in one pass. (The repurpose-one-video-into-five-formats move.)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Beginner traders&lt;/strong&gt; — the forex/trading corner of YouTube is &lt;em&gt;endless&lt;/em&gt; hour-long analysis videos. Instead of rewatching, you can pull out the actual setup, rules, and levels a video lays out and ask follow-up questions. &lt;em&gt;(Not financial advice, obviously — just a much faster way to digest the educational stuff.)&lt;/em&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Different people, same core trick: &lt;strong&gt;let the AI read the video so you don't have to sit through all of it.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  If you want to poke at it
&lt;/h2&gt;

&lt;p&gt;It's an &lt;code&gt;npx&lt;/code&gt; package, same config in Claude Desktop, Cursor, and Windsurf:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;{&lt;br&gt;
  "mcpServers": {&lt;br&gt;
    "scribefy": {&lt;br&gt;
      "command": "npx",&lt;br&gt;
      "args": ["-y", "scribefy-mcp"],&lt;br&gt;
      "env": { "SCRIBEFY_API_KEY": "sk_live_…" }&lt;br&gt;
    }&lt;br&gt;
  }&lt;br&gt;
}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;(Claude Desktop → Settings → Developer → Edit Config. Cursor → &lt;code&gt;~/.cursor/mcp.json&lt;/code&gt;. Windsurf → &lt;code&gt;~/.codeium/windsurf/mcp_config.json&lt;/code&gt;, then Refresh.) Restart and the tools show up. There's a key + a couple of free credits to mess around with.&lt;/p&gt;

&lt;h2&gt;
  
  
  The part I actually think is neat
&lt;/h2&gt;

&lt;p&gt;It's not really about one transcript. It's that the assistant can &lt;strong&gt;research a whole topic on its own&lt;/strong&gt; — search for candidates, glance at the metadata to throw out the 3-hour ones, then only pull transcripts for the handful worth reading. Search and metadata are free, so poking around a topic stays cheap and you only "spend" on the videos you actually use.&lt;/p&gt;

&lt;p&gt;And the timestamps matter more than I expected — Claude can go "at 12:40 they argue…" and I can click straight there to check, instead of trusting a vibe-summary of a 40-minute video.&lt;/p&gt;

&lt;h2&gt;
  
  
  The honest bits (because I hate posts that skip these)
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;It's &lt;strong&gt;YouTube-only&lt;/strong&gt;, and the video needs captions (auto-generated counts). It does &lt;em&gt;not&lt;/em&gt; do its own speech-to-text, so a caption-less video is a no-go.&lt;/li&gt;
&lt;li&gt;There are &lt;strong&gt;free open-source&lt;/strong&gt; YouTube MCP servers too. If you're cost-sensitive and don't mind the occasional breakage when YouTube changes something under the hood, those are a totally legit route. Mine's a hosted/paid thing that trades money for reliability (runs through a residential proxy so it doesn't get bot-blocked) plus the extra search/metadata tools.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So — not magic, not for everyone. But if YouTube is part of how you learn or work, having the AI do the watching-and-pulling has been a genuinely nice upgrade.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where I'm at
&lt;/h2&gt;

&lt;p&gt;It's pretty fresh — just got it listed in the official MCP registry and I'm slowly telling people. Honestly I'm still figuring out what folks actually want it to do, so if you try it (or you've built something similar), I'd love to hear what tools you'd want your agent to have for YouTube.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Repo: &lt;a href="https://github.com/MKirovBG/scribefy-mcp" rel="noopener noreferrer"&gt;https://github.com/MKirovBG/scribefy-mcp&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Setup notes for each assistant (incl. a ChatGPT route): &lt;a href="https://scribefy.app/guides/youtube-transcripts-for-ai-assistants" rel="noopener noreferrer"&gt;https://scribefy.app/guides/youtube-transcripts-for-ai-assistants&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Anyway — that's the thing. Back to building. 🛠️&lt;/p&gt;

</description>
      <category>claude</category>
      <category>mcp</category>
      <category>productivity</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
