yt-analytics-mcp
Analyzes YouTube channels: extracts transcripts, computes quantitative metrics (WPM, profanity, humor, rhetoric, title formula), and generates multi-creator comparison dashboards.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@yt-analytics-mcpanalyze @MrBeast's channel with 10 videos"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
yt-analytics-mcp
MCP server for YouTube channel deep analytics. Extracts transcripts, computes quantitative metrics (WPM, profanity, humor taxonomy, rhetoric fingerprint, title formula), and generates multi-creator comparison dashboards.
Tools
Tool | Description |
| Analyze a channel: download transcripts, compute metrics, cache results |
| List all cached channel analyses |
| Retrieve full cached analysis JSON for a channel |
| Remove a cached analysis |
| Build a tabbed HTML comparison dashboard from cached analyses |
Related MCP server: YouTube MCP
Quick Start
# Install
cd yt-analytics-mcp
npm install
# Add to Claude Code settings
# ~/.claude/settings.json → mcpServersClaude Code Config
{
"mcpServers": {
"yt-analytics": {
"command": "node",
"args": ["F:/tools/yt-analytics-mcp/src/index.js"],
"env": {
"YT_ANALYTICS_DATA": "F:/tools/yt-analytics-mcp/data"
}
}
}
}Usage
Analyze a single channel
Analyze @BennJordan's channel (20 videos, tech niche)
→ calls yt_analyze_channel with channel="@BennJordan", limit=20, niche="tech"Returns structured JSON with per-video and aggregate metrics:
WPM (words per minute) with niche baseline comparison
Profanity density per minute
Humor taxonomy (crude, self-deprecating, confrontational, hyperbolic, absurd)
Rhetoric fingerprint (connector word frequencies: but, so, because, if you, etc.)
Title formula (CAPS usage, exclamation marks, parentheticals)
Build a comparison dashboard
Compare all analyzed channels in a tabbed dashboard
→ calls yt_compare_creatorsGenerates a self-contained HTML file with:
Sticky tab bar for switching between creators
KPI cards (videos, words, runtime, median WPM, profanity, avg length)
WPM horizontal bar chart with niche average line
Video structure timeline
Humor taxonomy doughnut chart
Profanity density bar chart
Rhetoric radar chart
Video length vs. speech rate bubble chart
Title formula badges
Opening line pattern breakdown
Connector language grid
Per-video data table
Written analysis
Workflow
1. yt_analyze_channel → analyze @Creator1 (cached)
2. yt_analyze_channel → analyze @Creator2 (cached)
3. yt_analyze_channel → analyze @Creator3 (cached)
4. yt_compare_creators → build tabbed dashboard from all cached analysesThe skill layer (/yt-analytics) adds Gemini qualitative analysis on top — editing mechanics, humor quotes, video structure timelines, energy modulation — then merges with the MCP's quantitative data.
Niche Baselines
Niche | Avg WPM |
Fitness | ~170 |
Tech | ~160 |
Commentary | ~190 |
Educational | ~150 |
Gaming | ~180 |
News | ~175 |
Woodworking | ~175 |
Music | ~165 |
Requirements
Node.js 18+
Python 3.10+ with
yt-dlpandyoutube-transcript-apiinstalledNo API keys needed
Data Storage
Analyses are cached as JSON files in the data/ directory (configurable via YT_ANALYTICS_DATA env var). Transcript files are stored in data/transcripts/.
Architecture
yt-analytics-mcp/
├── src/
│ └── index.js # MCP server + HTML generator
├── scripts/
│ └── analyze_channel.py # Transcript extraction + quantitative analysis
├── data/ # Cached analyses (JSON) + transcripts
├── templates/ # Custom HTML templates (optional)
├── package.json
└── README.mdThe MCP server wraps the Python analysis script and adds:
Result caching and management
Multi-creator comparison HTML generation
Structured tool interfaces for Claude Code
The companion /yt-analytics skill orchestrates the full pipeline: MCP quantitative analysis → Gemini qualitative pass → merged report.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/KewkLW/yt-analytics-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server