CreatorScope MCP
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., "@CreatorScope MCPget channel stats for @MrBeast"
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.
CreatorScope MCP
A small MCP server that lets Claude directly pull exact YouTube creator stats and discover new creators, then write them into the Notion Influencers roster. Powered by the free YouTube Data API v3 (10,000 units/day, no card).
Same infra pattern as TitanMail: Node/TypeScript, one tool per file, deployed with pm2 + Caddy + token auth on the always-on EC2 box.
What it can / can't do
✅ Exact subscribers, per-video views → avg/median views, likes, comments → engagement rate, upload frequency, country, channel description (often with a business email). This is the full input to
Avg Views × CPMpricing.❌ Audience demographics, % US audience, fake-follower % — private to the channel owner; no API exposes them. Use Modash's free trial only when a brand demands audience-quality proof.
Related MCP server: YouTube MCP Server
Tools
Tool | Purpose | Quota cost |
| Health check; | 0 or 1 |
|
| ~1–2 |
| Full computed stat object for one creator. | ~3 |
| Stats for many inputs in one call, batched (channels/videos 50 at a time), with per-item errors. | ~3 each (batched cheaper) |
| Discover candidate channels; | 100 per 50 results (+~3 each if hydrated) |
| Local daily unit counter vs the 10,000 limit. | 0 |
Caching & freshness
Computed stats are cached per channel for CACHE_TTL_MS (default 6h), so repeat roster pulls don't re-spend quota. Results served from cache carry cached: true. Pass fresh: true to channel_stats / bulk_channel_stats to bypass the cache and force a live re-pull — do this right before quoting a brand. Concurrent identical requests are de-duplicated onto a single in-flight fetch, so a stampede can never double-spend quota.
channel_stats output fields
Identity/audience: channelId, title, handle, url, subscribers, subscribersHidden, totalViews, videoCount, lifetimeAvgViews, country, channelCreatedAt, channelAgeDays, description.
Contact/discovery: emails[], businessEmail, links[] ({type,url}), keywords[], topics[].
Performance: avgViews, medianViews, minSampledViews, maxSampledViews, avgLikes, avgComments, engagementRatePct, likeRatePct, commentRatePct, viewsPerSubscriberPct, avgToMedianRatio, consistency, recentTrend, likesHidden, uploadsPerMonth, daysBetweenUploads, lastUploadDate, sampledCount, excludeShorts, plus recentVideos[] (included by default on channel_stats; opt in on bulk_channel_stats via include_videos).
Emails:
emails[]is parsed from the public channel description. YouTube's About-page "business email" button is CAPTCHA-gated and exposed by no API — uselinks[]/website plus a dedicated email-finder to go further.
Computed:
avgViews= mean views of the last N non-Short videos (default N=15).medianViews= median (robust to a single viral outlier).engagementRatePct= (mean likes + mean comments) ÷ avgViews × 100. Divide-by-zero guarded; hiddenlikeCountis excluded from the mean and flagslikesHidden.uploadsPerMonth= sample size ÷ (span of sampled days ÷ 30).Shorts filter (
exclude_shorts, default true): parses ISO-8601durationand drops videos < 60s so avg views isn't skewed.businessEmail= first email found in the channel description (handlesat/dotobfuscation).
Quota model
Per the API: channels.list = 1, playlistItems.list = 1/page, videos.list = 1/batch of 50, search.list = 100. One full channel_stats ≈ 3 units → ~3,000 creators/day on the free tier. Discovery (search_channels) costs 100 each → ~100 searches/day. A local .quota-counter.json tracks usage per UTC day as a soft-guard and warns near the limit.
Local development
npm install
cp .env.example .env # fill in YOUTUBE_API_KEY and CREATORSCOPE_TOKEN
npm run build
npm start
npm test # run the unit-test suite (no network needed)
npm run smoke # end-to-end: exercises the live tools (server must be running)The server listens on http://127.0.0.1:8790/mcp (Streamable HTTP). GET /healthz is an unauthenticated liveness probe. Every /mcp request requires the token via Authorization: Bearer <CREATORSCOPE_TOKEN> (or an X-CreatorScope-Token header).
Quick check once running:
curl -s http://127.0.0.1:8790/healthzConfiguration (.env)
Var | Default | Notes |
| — | Required. Restrict to YouTube Data API v3 only (+ optional IP-restrict to the EC2 IP). |
| — | Required. Bearer token clients must present. Generate with |
|
| Local port Caddy proxies to. |
|
| Keep loopback so only Caddy can reach it. |
|
| Free-tier daily unit budget. |
|
| Warn once usage crosses this fraction. |
|
| Recent non-Short videos to sample. |
Deploy on EC2 (pm2 + Caddy + token)
Clone + build on the box:
git clone <private-repo> creatorscope-mcp && cd creatorscope-mcp npm ci && npm run build cp .env.example .env # set YOUTUBE_API_KEY + a fresh CREATORSCOPE_TOKENStart with pm2:
pm2 start ecosystem.config.cjs pm2 save && pm2 startupAdd the Caddy route — copy the block from
Caddyfile.exampleinto your Caddyfile (adjust the subdomain/port), thencaddy reload. Caddy handles TLS; the app enforces the token.Connect to Claude: claude.ai → Settings → Connectors → Add custom connector →
URL:
https://creatorscope.perplexionmedia.com/mcpAuth: Bearer token = your
CREATORSCOPE_TOKEN.
Verify: tell Claude "CreatorScope connected" → it runs
ping deep+ one test channel, then enriches the roster.
Founder one-time setup (Google Cloud)
console.cloud.google.com → New Project ("Perplexion CreatorScope") → APIs & Services → Library → enable YouTube Data API v3 → Credentials → Create API key → restrict it to that API. ~5 min, free, no card.
How Claude uses it (workflow)
Enrich existing roster:
bulk_channel_stats(["@Techlore", "@AllThingsSecured", …])→ write real subs/avgViews/engagement into Notion Influencers (replacing manual estimates); Est. Price auto-recomputes.Discover new creators:
search_channels("VPN review", { min_subscribers: 20000, country: "US" })→bulk_channel_statsthe candidates → filter by engagement + avg views + niche fit → add the good ones to Notion (status Collected) with stats + auto price.On-demand vetting: brand replies "send creators" → pull fresh stats for the shortlist so pricing is current.
CPM stays Claude-set by sub-niche (see Pricing & Economics); the MCP supplies views/engagement only.
Project layout
src/
config.ts env loading + validation
quota.ts per-day unit counter (soft-guard, atomic writes)
cache.ts TTL cache + in-flight de-duplication (stampede-safe)
log.ts structured JSONL logging (stdout + optional file)
util.ts input parsing, ISO-8601 duration, median, email extraction
youtube.ts typed YouTube Data API v3 client (timeout, retry/backoff, batching)
stats.ts resolve + compute stat objects (batched) + discovery
server.ts Streamable HTTP MCP server + bearer-token auth
tools/ one file per tool (ping, resolve_channel, channel_stats, …)
test/ unit tests (node:test) — util, pricing math, cache/dedupe
scripts/
smoke-client.mjs end-to-end MCP client test against a running server
ecosystem.config.cjs pm2 process definition (fork mode, single instance)
Caddyfile.example sample reverse-proxy route
.env.example config templateThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceEnables Claude to access and manage YouTube channel data through the YouTube Data API v3 and YouTube Analytics API. Provides tools for reading analytics, fetching video metadata, searching uploads, and updating video SEO directly from Claude.Last updated9MIT
- FlicenseAqualityDmaintenanceIntegrates YouTube with Claude Code, enabling video transcript retrieval, search, metadata extraction, channel info, playlists, comments, trending videos, engagement analytics, chapter extraction, SponsorBlock integration, and most-replayed heatmaps.Last updated15375
- AlicenseAqualityDmaintenanceEnables YouTube integration with Claude Code, including video search, metadata retrieval, transcript fetching, channel exploration, and trending videos.Last updated81MIT
- Flicense-qualityDmaintenanceEnables Claude to interact with YouTube Data API for searching videos, channels, and playlists, and retrieving details and playlists.Last updated37
Related MCP Connectors
Agent-callable creator intelligence: 952+ scored YouTube creators across 180 niches.
Find and analyze influencers with creator search, lookalikes, profiles, posts, and transcripts.
Create geo-targeted affiliate smart links, pull analytics, and rewrite YouTube descriptions.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/KashifMalik777/creatorscope-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server