get_viral_social_gaps
Identify 5 time-sensitive viral trend gaps for TikTok challenges, HBO premieres, and short-window consumer builds. Peak windows measured in days or weeks.
Instructions
SPECIALIZED TOOL — only use when the user explicitly asks for VIRAL, SOCIAL, TIKTOK, CONSUMER, TREND-BASED, or SHORT-WINDOW build opportunities. Returns 5 time-sensitive consumer/viral trend gaps (TikTok challenges, HBO premieres, viral formats) with peak windows measured in days or weeks. DO NOT call this tool for general 'find me ideas' or 'what should I build' queries — those should use search_gaps which returns serious validated business opportunities across 7 industries. Only call this when the user specifically mentions viral, social, trend, TikTok, Instagram, or consumer-facing short-window builds.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.js:171-179 (registration)Tool registration in the TOOLS array with name, description, and inputSchema (no parameters required).
{ name: "get_viral_social_gaps", description: "SPECIALIZED TOOL — only use when the user explicitly asks for VIRAL, SOCIAL, TIKTOK, CONSUMER, TREND-BASED, or SHORT-WINDOW build opportunities. Returns 5 time-sensitive consumer/viral trend gaps (TikTok challenges, HBO premieres, viral formats) with peak windows measured in days or weeks. DO NOT call this tool for general 'find me ideas' or 'what should I build' queries — those should use `search_gaps` which returns serious validated business opportunities across 7 industries. Only call this when the user specifically mentions viral, social, trend, TikTok, Instagram, or consumer-facing short-window builds.", inputSchema: { type: "object", properties: {}, }, }, - src/index.js:223-228 (handler)Handler logic in the CallToolRequestSchema switch statement: returns the TRENDS constant (loaded from data/trends.json) along with a note explaining these are viral consumer trends.
case "get_viral_social_gaps": payload = { viral_social_gaps: TRENDS, _note: "These are VIRAL CONSUMER trends with short peak windows (days to weeks) — TikTok, HBO, social formats. For serious B2B / validated business opportunities, use the `search_gaps` tool which covers 474 gaps across 7 industries. Updated weekly at thevibepreneur.com.", }; - src/index.js:16-16 (helper)Data loading: TRENDS is loaded from data/trends.json at startup and returned as viral_social_gaps by the handler.
const TRENDS = JSON.parse(readFileSync(join(DATA_DIR, "trends.json"), "utf8"));