<?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: Tauan Binato</title>
    <description>The latest articles on DEV Community by Tauan Binato (@tauanbinato).</description>
    <link>https://dev.to/tauanbinato</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%2F3733783%2F3b3eab32-9510-40c6-a522-7bef7849fde4.png</url>
      <title>DEV Community: Tauan Binato</title>
      <link>https://dev.to/tauanbinato</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/tauanbinato"/>
    <language>en</language>
    <item>
      <title>I Built an MCP Server That Turns YouTube Videos Into AI Skills</title>
      <dc:creator>Tauan Binato</dc:creator>
      <pubDate>Mon, 26 Jan 2026 23:10:00 +0000</pubDate>
      <link>https://dev.to/tauanbinato/i-built-an-mcp-server-that-turns-youtube-videos-into-ai-skills-2lik</link>
      <guid>https://dev.to/tauanbinato/i-built-an-mcp-server-that-turns-youtube-videos-into-ai-skills-2lik</guid>
      <description>&lt;p&gt;Ever watched a 30-minute programming tutorial and thought "I wish I could just extract the useful parts"?&lt;/p&gt;

&lt;p&gt;I built &lt;a href="https://github.com/tauanbinato/glean" rel="noopener noreferrer"&gt;Glean&lt;/a&gt; - an MCP server that watches YouTube videos for you and converts them into structured skill files that Claude Code (and other AI assistants) can actually use.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;We've all been there:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You find a great tutorial on YouTube&lt;/li&gt;
&lt;li&gt;You take notes, pause, rewind, pause again&lt;/li&gt;
&lt;li&gt;A week later, you need that info and can't remember which video it was&lt;/li&gt;
&lt;li&gt;Your AI assistant has no idea about that specific technique you learned&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Solution
&lt;/h2&gt;

&lt;p&gt;Glean connects to Claude Code via &lt;a href="https://modelcontextprotocol.io/" rel="noopener noreferrer"&gt;MCP (Model Context Protocol)&lt;/a&gt; and gives it three new abilities:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Generate a skill from any YouTube URL&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Search YouTube and rank videos by educational quality&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Automatically find the best video on a topic and learn from it&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The output is a clean markdown file with concepts, code examples, best practices, and common pitfalls - all extracted from the video.&lt;/p&gt;

&lt;h2&gt;
  
  
  How It Works
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;You: "Learn about FastAPI authentication from this video: youtube.com/watch?v=..."

Claude: *extracts transcript*
        *removes sponsor segments, "smash that like button", filler words*
        *structures into a skill file*
        *saves to ~/.claude/skills/*

You: "How do I implement JWT auth in FastAPI?"

Claude: *now actually knows the answer from the skill you just created*
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Quick Demo
&lt;/h2&gt;

&lt;p&gt;After installing, you can do things like:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Search YouTube for "kubernetes networking" videos by TechWorld with Nana
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Glean will search, filter by that channel, and rank results by educational value (not just view count).&lt;/p&gt;

&lt;p&gt;Or go fully automatic:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Generate a skill about React Server Components from the best tutorial you can find
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  The Technical Bits
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Transcript fallback chain&lt;/strong&gt;: YouTube captions → yt-dlp → Whisper (via Groq)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Smart cleaning&lt;/strong&gt;: AI removes sponsors, self-promo, engagement bait, filler words&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Ranking algorithm&lt;/strong&gt;: Weighs relevance, educational signals, engagement ratio, channel authority&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Channel filtering&lt;/strong&gt;: Search within specific creators' content&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Installation
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Clone it&lt;/span&gt;
git clone https://github.com/tauanbinato/glean.git
&lt;span class="nb"&gt;cd &lt;/span&gt;glean

&lt;span class="c"&gt;# Install with uv&lt;/span&gt;
uv &lt;span class="nb"&gt;sync&lt;/span&gt;

&lt;span class="c"&gt;# Add to Claude Code&lt;/span&gt;
claude mcp add glean &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-e&lt;/span&gt; &lt;span class="nv"&gt;GLEAN_ANTHROPIC_API_KEY&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;your-key &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-e&lt;/span&gt; &lt;span class="nv"&gt;GLEAN_GROQ_API_KEY&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;your-key &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--&lt;/span&gt; uv run &lt;span class="nt"&gt;--directory&lt;/span&gt; /path/to/glean glean-mcp
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You'll need API keys from &lt;a href="https://console.anthropic.com/" rel="noopener noreferrer"&gt;Anthropic&lt;/a&gt; and &lt;a href="https://console.groq.com/keys" rel="noopener noreferrer"&gt;Groq&lt;/a&gt; (free tier works fine for Whisper).&lt;/p&gt;

&lt;h2&gt;
  
  
  What Gets Cleaned Out
&lt;/h2&gt;

&lt;p&gt;The AI cleaner automatically strips:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;"This video is sponsored by..."&lt;/li&gt;
&lt;li&gt;"Don't forget to like and subscribe"&lt;/li&gt;
&lt;li&gt;"Follow me on Twitter"&lt;/li&gt;
&lt;li&gt;"Link in the description"&lt;/li&gt;
&lt;li&gt;All the "um", "uh", "basically", "you know"&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;What stays: the actual technical content, code examples, explanations.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why MCP?
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://modelcontextprotocol.io/" rel="noopener noreferrer"&gt;Model Context Protocol&lt;/a&gt; is Anthropic's standard for giving AI assistants new capabilities. Instead of copy-pasting or hoping the model knows something, you can build tools that extend what it can do.&lt;/p&gt;

&lt;p&gt;Glean is one example. The skills it generates become part of Claude's knowledge for your projects.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try It Out
&lt;/h2&gt;

&lt;p&gt;Repo: &lt;a href="https://github.com/tauanbinato/glean" rel="noopener noreferrer"&gt;github.com/tauanbinato/glean&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you build something cool with it or have ideas for improvements, let me know. PRs welcome.&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>claudecode</category>
      <category>python</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
