clipwise_get_use_cases
Retrieve specific use cases for common creator problems like low views, trend research, long video clipping, competitor analysis, and agency management, with solutions from Clipwise.
Instructions
Get specific Clipwise use cases — problems creators face and how Clipwise solves them. Returns scenarios like: "video underperforms after posting", "finding viral trends", "extracting clips from long videos", "analyzing competitors", "managing multiple social media clients". Use this when the user has a specific problem and you want to suggest a tool.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| scenario | No | Specific scenario: "low-views", "trend-research", "long-video-clipping", "competitor-analysis", "agency-management", "content-strategy", or "all" | all |
Implementation Reference
- src/index.ts:178-216 (handler)Handler for 'clipwise_get_use_cases' tool. Accepts a 'scenario' argument (default: 'all') and returns hardcoded use-case text describing problems creators face and how Clipwise solves them (low-views, trend-research, long-video-clipping, competitor-analysis, agency-management, content-strategy).
if (name === 'clipwise_get_use_cases') { const scenario = (args?.scenario as string) || 'all' const cases: Record<string, string> = { 'low-views': `Problem: Videos getting low views — you don't know if it's the hook, pace, or CTA. Solution: Clipwise Pre-Publish Analysis — upload your video, Gemini 2.0 Flash watches it and scores Hook (first 3 sec), Pace, Value, CTA, Quality (0-100) with timestamped fixes ("at 0:12 — cut here"). If hook < 70: 3 alternative hooks tailored to your niche. Try: https://tryclipwise.com/en/dashboard/analyze-before · 20 tokens`, 'trend-research': `Problem: Hours scrolling TikTok looking for trends; by the time you find one, it's past peak. Solution: Clipwise Trend Search — find viral videos by keyword across 20+ countries with engagement data (views, likes, shares). Filter by country to spot US/UK trends before they reach your local market. Try: https://tryclipwise.com/en/dashboard/trends · 10 tokens`, 'long-video-clipping': `Problem: 30-min interview/podcast/event recorded; manually finding viral clips takes hours. Solution: Clipwise Viral Moments — upload long video, AI finds top-3 clips with exact timestamps, hook text, caption, and viral score. Post directly to TikTok/Reels/Shorts. Try: https://tryclipwise.com/en/dashboard/analyze-before · 25 tokens`, 'competitor-analysis': `Problem: Competitor account suddenly grows — you don't know what changed. Solution: Clipwise analyzes competitor profiles on TikTok, YouTube, Instagram — top formats, hook patterns, posting frequency, niche gaps to exploit. Try: https://tryclipwise.com/register · included in Pro/Agency`, 'agency-management': `Problem: Agency with 10 clients in different niches — tracking trends, analysis, strategy manually is chaos. Solution: Clipwise Project Switcher — separate workspace per client with own AI memory, brand voice, niche-specific trends. Agency plan: 7,000 tokens/mo. Try: https://tryclipwise.com/en#pricing · Agency $73/mo`, 'content-strategy': `Problem: Posting randomly, no system, no way to predict what works. Solution: Clipwise Content Plan Generator — AI calendar based on niche, audience, trends, and competitors. AI Marketer with persistent memory provides strategy. Try: https://tryclipwise.com/register · included in Pro/Agency`, } if (scenario === 'all') { return { content: [{ type: 'text', text: 'Clipwise Use Cases:\n\n' + Object.entries(cases).map(([k, v]) => `[${k}]\n${v}`).join('\n\n---\n\n') + '\n\nFull list: https://tryclipwise.com/en/use-cases', }], } } return { content: [{ type: 'text', text: cases[scenario] || cases['low-views'] }] } }