
Youtube Obsidian Mcp
Automatically generate professional Obsidian study notes from YouTube videos using Claude AI. Extract subtitles, capture screenshots at key timestamps, and create beautifully formatted markdown notes. Perfect for learning programming, design, academics, business - any topic on YouTube!
š YouTube Lecture Notes MCP
Automatically generate professional study notes from YouTube videos
YouTube + Claude AI + Obsidian = Supercharged Learning
Never manually take screenshots and paste them into notes again! This MCP server integrates with Claude Desktop to automatically extract subtitles, capture screenshots at key timestamps, and generate beautifully formatted Obsidian notes from any YouTube tutorial or lecture.
⨠Features
- Auto-extract subtitles from any YouTube video with captions
- Capture screenshots at timestamps you specify
- Generate structured notes in Obsidian markdown format
- Organized metadata with tags, dates, and video links
- Full transcripts included with timestamps
- Preview subtitles before processing
- Customizable paths for your Obsidian vault organization
- Works with Claude AI for natural language interaction
šÆ Perfect For
Learn from YouTube videos on any topic:
| Category | Examples |
|---|---|
| Programming | Python, JavaScript, React, Web Development |
| Creative Skills | Photoshop, Premiere Pro, Blender, Video Editing |
| Business & Productivity | Excel, Data Analysis, Project Management |
| Academic | Math, Physics, Chemistry, Biology |
| IT & Networking | CCNA, AWS, CompTIA, Cybersecurity |
| Personal Development | Languages, Fitness, Cooking, Music |
š Quick Start
Prerequisites
Before installation, make sure you have:
- Python 3.10+ - Download here
- ā ļø Check "Add Python to PATH" during installation
- FFmpeg - For capturing video screenshots
- Claude Desktop - Get it here
- Obsidian (optional but recommended) - Download
Installation
Option 1: Automated Install (Recommended)
- Clone or download this repository
- Open PowerShell in the project folder
- Run the installer:
.\install.ps1
The script will:
- ā Check all prerequisites
- ā Install required Python packages
- ā Set up directory structure
- ā Generate Claude Desktop configuration
Option 2: Manual Install
See the detailed SETUP_GUIDE.md for step-by-step instructions.
š” Usage
Once installed, just talk to Claude naturally in Claude Desktop!
Example 1: Process a Python Tutorial
Hey Claude, process this Python tutorial:
https://www.youtube.com/watch?v=rfscVS0vtbw
Capture screenshots at: 2:30, 8:15, 15:00, 22:45, 35:00
This is Day 1 of my learning journey.
Example 2: Preview Before Processing
Can you show me the subtitles for this video first?
https://www.youtube.com/watch?v=example
Then I'll tell you which timestamps to capture.
Example 3: Custom Organization
Configure my YouTube notes:
- Vault: D:\Learning\Obsidian
- Notes folder: Courses/Web Development
- Images folder: Courses/Web Development/assets
What You Get
Each processed video creates:
1. Markdown Note File
Day 01 - Complete Python Course for Beginners.md
2. Screenshot Images
day1_abc123_1_150s.jpg
day1_abc123_2_495s.jpg
day1_abc123_3_900s.jpg
3. Structured Content
---
date: 2026-01-16
day: 1
tags: [lecture, video-notes, learning]
video: "https://youtube.com/watch?v=..."
---
# Day 1: Complete Python Course for Beginners
> **Source**: [freeCodeCamp.org](https://youtube.com/...) > **Duration**: 4:26:54
> **Study Date**: 2026-01-16
## Summary
[Automatic summary from transcript]
## Key Concepts & Notes
### Timestamp 02:30

**Context from lecture:**
> In this section, we cover variables and data types...
**Key Points:**
- [Your notes here]
## Key Terms & Definitions
| Term | Definition |
| ---- | ---------- |
| | |
## Review Questions
1.
2.
## Personal Notes & Observations
[Your thoughts]
## Full Transcript
[Complete timestamped transcript]
š ļø Available Tools
The MCP server provides three tools accessible through Claude:
1. process_youtube_lecture
Main tool to process a video:
- Extracts subtitles
- Captures screenshots at your timestamps
- Generates complete Obsidian note
Parameters:
url- YouTube video URL (required)timestamps- Comma-separated times like "5:30, 12:00, 25:00" (required)day_number- Your study day number (required)vault_path- Custom vault path (optional)notes_folder- Custom notes folder (optional)images_folder- Custom images folder (optional)
2. get_video_subtitles
Preview the full transcript before processing:
- Returns complete subtitles with timestamps
- Helps you identify key moments
Parameters:
url- YouTube video URL (required)
3. configure_paths
Set or view your default paths:
- Configure Obsidian vault location
- Set custom folder structure
Parameters:
vault_path- New vault path (optional)notes_folder- New notes folder (optional)images_folder- New images folder (optional)
š File Structure
After installation, your files will be organized like this:
C:\Users\YourName\
āāā mcp-servers\
ā āāā youtube-lecture-notes\
ā āāā server.py
ā āāā claude_config_snippet.json
ā
āāā Documents\
āāā ObsidianVault\
āāā Lecture Notes\
āāā Day 01 - Python Basics.md
āāā Day 02 - Advanced Functions.md
āāā images\
āāā day1_xxx_1_150s.jpg
āāā day1_xxx_2_495s.jpg
āāā day2_xxx_1_300s.jpg
š§ Troubleshooting
Common Issues
"python is not recognized"
- Reinstall Python and check "Add to PATH"
- Or specify full path in config:
C:\\Python312\\python.exe
"ffmpeg is not recognized"
- Install FFmpeg:
winget install ffmpeg - Restart terminal after installation
- Verify:
ffmpeg -version
"No subtitles found"
- Check if the video has captions enabled on YouTube
- Try with a different video to test
- Some videos may not have subtitles available
MCP not connecting
- Verify paths in
claude_desktop_config.jsonuse double backslashes\\ - Restart Claude Desktop completely
- Check Claude Desktop logs in Settings > Developer
Screenshots not capturing
- Ensure FFmpeg is installed correctly
- Video may be region-restricted
- Some videos block downloading
For more help, see the SETUP_GUIDE.md or open an issue on GitHub.
š Tips for Best Results
- Preview first - Use
get_video_subtitlesto scan content before choosing timestamps - Pick key moments - Choose 4-6 important timestamps per video (don't overdo it!)
- Watch at 2x speed - Quickly identify where major concepts are introduced
- Fill in blanks - The notes provide structure, but add your own insights
- Organize with tags - Customize the
tags:in frontmatter for your topics - Review regularly - Use the review questions section to test yourself
šØ Customize Your Note Style
The generated notes are fully customizable to match your personal learning style and preferences!
What You Can Customize
1. Note Structure & Sections
- Add custom sections for your needs (code snippets, formulas, workflows)
- Reorder sections to match your thinking process
- Remove sections you don't use
- Create templates for different topics
2. Formatting & Style
- Change heading styles and hierarchy
- Customize emoji usage and visual markers
- Adjust table layouts for terms and definitions
- Modify YAML frontmatter tags and metadata
3. Organization
- Custom folder structures by topic, difficulty, or course
- Tag systems for easy filtering and linking
- Naming conventions that work for you
- Integration with your existing Obsidian vault structure
4. Content Enhancement
- Add your own code blocks with syntax highlighting
- Include links to external resources
- Embed additional images or diagrams
- Create internal wiki-links to related notes
How to Customize
See the comprehensive CUSTOMIZATION.md guide for:
- Step-by-step customization instructions
- Pre-made templates for different learning styles
- Topic-specific note structures (programming, design, business, etc.)
- Advanced Obsidian integration tips
- Examples of customized notes
Quick customization tips:
- Edit
server.pylines 254-349 to change the default note template - Modify tags in the frontmatter after generation
- Use Obsidian templates for post-processing
- Create Obsidian CSS snippets for custom styling
š” Your notes, your way - Start with the default structure and evolve it as you discover what works best for your learning!
š¤ Contributing
Contributions are welcome! Feel free to:
- š Report bugs
- š” Suggest new features
- š§ Submit pull requests
- š Improve documentation
Acknowledgments
Built with:
š Documentation
- SETUP_GUIDE.md - Detailed installation and setup instructions
- CLAUDE.md - Instructions for Claude AI on how to use this MCP effectively
- EXAMPLE_NOTE.md - Sample note structure and template
- CUSTOMIZATION.md - Complete guide to customizing your note style
š¬ Support & Community
- Documentation: Check SETUP_GUIDE.md
- For Claude AI: See CLAUDE.md for usage guidelines
- Issues: Report bugs here
- Discussions: Share your use cases and tips
- License: MIT License
Made with ā¤ļø for learners everywhere by Mohsin Khadim
How to Install
- Download the ZIP or clone the repository
- Open the folder as a vault in Obsidian (File ā Open Vault)
- Obsidian will prompt you to install required plugins
Stats
Stars
3
Forks
0
License
MIT
Last updated 3mo ago
Categories
Tags