Yt Outlier
FreeNot checkedFinds YouTube outlier videos on small channels with high views-to-subs ratio, and provides tools to analyze video structure and comments to verify replicable fo
About
Finds YouTube outlier videos on small channels with high views-to-subs ratio, and provides tools to analyze video structure and comments to verify replicable formats.
README
MCP server that finds YouTube outlier videos: videos on small channels (≤100K subs) with one video massively outperforming both the channel's subscriber base (≥5:1 views:subs) and the channel's own recent uploads. That signature means the recommendation algorithm rewarded the format, not an existing audience — so the format is replicable by a new channel.
The method is the "Icon Method" qualifying criteria proven manually on
@Before-You-Start (see hobby-channel/IDEAS.md); this server automates it as
one MCP tool. Origin: idea #2 in _ideas/next-batch.html (paid MCP servers).
Tool: find_outliers
| Input | Default | Meaning |
|---|---|---|
query |
(required) | Topic phrase, e.g. "beginner mistakes sourdough" |
maxSubs |
100,000 | Max channel subscribers |
minViews |
100,000 | Min video views |
minRatio |
5 | Min views:subs ratio |
publishedWithinDays |
365 | Freshness window (older outliers are stale evidence) |
minOutlierFactor |
3 | Video views vs. median of channel's other recent uploads |
minQueryRelevance |
0 (off) | Min fraction of query terms found in title/description/tags; 0.5 cuts off-topic noise |
maxResults |
10 | Cap on returned outliers |
Pipeline per call: search.list (order=viewCount, the expensive call) →
batch videos.list + channels.list → cheap-filter by views/subs/ratio →
for survivors, pull the uploads playlist and compare against the channel's
median recent-upload views (the outlier-vs-baseline check that separates a
breakout format from a big channel's normal video).
Output per outlier: URL, views, subs, ratio, channel median views,
outlier factor, queryRelevance (fraction of query terms found in
title/description/tags — always reported, filtered only if
minQueryRelevance > 0; costs zero extra quota since the snippet is already
fetched), comments-enabled flag (comments are the manual demand-signal
step), channel video count, plus total quota units consumed.
Tool: get_video_structure
Icon Method verification step 2 — extract the replicable format instead of
guessing it. Takes a video ID or URL; returns duration, tags, chapters
(parsed from 0:00 Intro-style description lines), the description, and the
transcript. Costs 1 quota unit; the transcript itself is fetched outside
the Data API at zero quota (captions.download needs owner OAuth, so the
server asks the InnerTube player endpoint as the ANDROID client — unofficial,
returns transcript: null gracefully if YouTube ever gates it).
| Input | Default | Meaning |
|---|---|---|
video |
(required) | Video ID or URL (watch/shorts/youtu.be forms) |
includeTranscript |
true | Fetch the transcript |
maxTranscriptChars |
15,000 | Truncation cap |
Tool: get_comment_signal
Icon Method verification step 3 — comments prove unmet demand, not just views. Returns the top relevance-ordered comments (author, text, likes, replies) plus quick counts: comments asking questions and comments using demand phrasing ("please make…", "part 2", "how do you…"). Handles comments-disabled videos gracefully. Costs 1 quota unit.
| Input | Default | Meaning |
|---|---|---|
video |
(required) | Video ID or URL |
maxComments |
30 | Top comments to fetch (max 100) |
Tool: search_niche_sweep
Runs find_outliers once per niche by substituting each niche into a phrase
template, then ranks every hit across all niches by views:subs ratio — the
niche that keeps appearing up top is where the replicable format lives.
Expensive: each niche is a full search (~110–130 units), max 8 niches per
sweep. Per-niche API errors are recorded without killing the sweep; a
quota-exhausted error aborts the remaining niches with a note.
| Input | Default | Meaning |
|---|---|---|
template |
(required) | Phrase containing {niche}, e.g. "beginner mistakes {niche}" |
niches |
(required) | 1–8 niches to substitute |
maxResultsPerNiche |
5 | Cap per niche |
| filters | same as find_outliers |
maxSubs, minViews, minRatio, publishedWithinDays, minOutlierFactor, minQueryRelevance |
Tool: get_channel_baseline
The inverse entry point: you already have a suspect channel (from a
competitor, a comment, another tool) instead of a topic query. Computes the
channel's baseline — median views of its recent uploads — and scores every
recent upload against it, flagging outliers. Cheap: ~3 quota units (no
search.list call). Accepts channel ID, @handle, or channel URL.
| Input | Default | Meaning |
|---|---|---|
channel |
(required) | Channel ID (UC…), @handle, or channel URL |
recentUploads |
15 | Recent uploads to fetch for the baseline (3–50) |
minOutlierFactor |
3 | Flag uploads at ≥ this multiple of the channel median |
Setup
npm install
npm run build
Configure in a client (Claude Code example):
claude mcp add yt-outliers -e YOUTUBE_API_KEY=<key> -- node <abs-path>/dist/index.js
BYO key: needs a YouTube Data API v3 key (.env.example). Free quota is
10,000 units/day; one find_outliers call costs ~110–130 units (search=100,
everything else 1/call), so ~75–90 searches/day. The BYO-key model is what
makes this sellable without a Google quota-extension audit.
Roadmap
- Live-test tool against real niches (2026-07-10: 4 real outliers on "beginner mistakes sourdough", 110 units/call as predicted)
- Phase 2 tools:
get_video_structure(chapters/transcript) andget_comment_signal(top comments → demand resonance) to automate Icon Method verification steps 2–3 (2026-07-10, live-tested) -
search_niche_sweep: rotate one phrase template across hobby clusters (2026-07-10, live-tested: 2-niche sweep = 210 units, cross-niche ranking works) - List on Smithery (2026-07-10): live at smithery.ai/servers/phillipmex3/yt-outlier-mcp. MCPize deferred (their SDK/hosting required; actual rev share 80%, not the 85% marketed) — revisit if Smithery shows install signal.
Publishing note
Smithery's registry requires each tools[] entry in manifest.json to carry an
inputSchema, but npx @anthropic-ai/mcpb pack rejects that key as invalid.
Workaround used here: pack the bundle from a manifest without the schemas,
then replace manifest.json inside the .mcpb (it's a plain zip) with the
schema-bearing version in this repo before smithery mcp publish.
Installing Yt Outlier
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/phillipmex/yt-outlier-mcpFAQ
Is Yt Outlier MCP free?
Yes, Yt Outlier MCP is free — one-click install via Unyly at no cost.
Does Yt Outlier need an API key?
No, Yt Outlier runs without API keys or environment variables.
Is Yt Outlier hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install Yt Outlier in Claude Desktop, Claude Code or Cursor?
Open Yt Outlier on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
ARA
Generate images, video and audio from any AI agent — one connector.
by ARAOmni Video
An MCP server that transforms LLM-enabled IDEs into professional video editors by pre-processing footage into text proxies, generating motion graphics via HTML/
by buildwithtazaYouTube
Transcripts, channel stats, search
by YouTubeEverArt
AI image generation using various models.
by modelcontextprotocolgpu-bridge/mcp-server
Unified GPU inference API with 30 AI services (LLM, image gen, video, TTS, whisper, embeddings, reranking, OCR) as MCP tools. Pay-per-use via x402 USDC or API k
by gpu-bridgehamflx/imagen3-mcp
A powerful image generation tool using Google's Imagen 3.0 API through MCP. Generate high-quality images from text prompts with advanced photography, artistic,
by hamflxmerterbak/Grok-MCP
MCP server for xAI's [Grok API](https://docs.x.ai/docs/overview) with agentic tool calling, image generation, vision, and file support.
by merterbakSureScaleAI/openai-gpt-image-mcp
OpenAI GPT image generation/editing MCP server.
by SureScaleAIYangLiangwei/PersonalizationMCP
Comprehensive personal data aggregation MCP server with Steam, YouTube, Bilibili, Spotify, Reddit and other platforms integrations. Features OAuth2 authenticati
by YangLiangweiAceDataCloud/MCPFlux
Flux AI image generation and editing (Black Forest Labs) via Ace Data Cloud API.
by AceDataCloudCompare Yt Outlier with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All media MCPs
