Virlo

Created By
Andres Rodriguez2 months ago
Virlo — Short-form video analytics and trend intelligence API. 20 MCP tools and 3 workflow prompts covering keyword search (Orbit), creator analysis (Satellite), niche monitoring (Comet), hashtag analytics, trending videos, and long-term tracking across TikTok, YouTube Shorts, and Instagram Reels. Async operations auto-poll for results. Bearer token auth (virlo_tkn_*). Docs: https://dev.virlo.ai/docs/mcp
Overview

Virlo MCP Server

Short-form video analytics and trend intelligence API for TikTok, YouTube Shorts, and Instagram Reels.

Features

  • 20 MCP tools and 3 workflow prompts for complete social media intelligence
  • Real-time analytics across 21K+ creators daily
  • Async operations auto-poll for up to 55 seconds, then return job IDs for long-running tasks

Tools

Analytics (instant results)

  • search_hashtags — Search trending hashtags across platforms (10 credits)
  • get_hashtag_performance — Detailed metrics for a specific hashtag (10 credits)
  • get_trending_videos — Top viral videos from the last 24-48 hours (50 credits)
  • get_trends — Current trend groups with date range filtering (50 credits)
  • get_trends_digest — Today's curated trend digest (50 credits)
  • search_keywords — Run keyword searches across platforms (100 credits)
  • list_keyword_searches — List previous searches (free)
  • get_keyword_search_results — Get videos, ads, or outliers from a search (free)

Comet (niche monitoring)

  • create_niche_monitor — Create automated scheduled monitors (100 credits)
  • list_niche_monitors — List your monitors (free)
  • get_niche_monitor_data — Get monitor results (free)
  • manage_niche_monitor — Update or deactivate monitors (free)

Satellite (creator & video intel)

  • lookup_creator — Full creator profile and analytics (100 credits)
  • analyze_video — Outlier performance analysis (100 credits)

Tracking (long-term monitoring)

  • track_creator — Track a creator over time (50 credits/cycle)
  • track_video — Track a video over time (50 credits/cycle)
  • list_tracked_items — List tracked items (free)
  • get_tracking_report — AI-generated reports and snapshots (free)

Utility

  • check_job_status — Check async job progress (free)
  • get_credit_balance — Check API key status and credits (free)

Authentication

Bearer token via Authorization: Bearer virlo_tkn_YOUR_API_KEY

Get your API key at dev.virlo.ai/dashboard/api-keys

Documentation

dev.virlo.ai/docs/mcp

Server Config

{
  "mcpServers": {
    "virlo": {
      "url": "https://dev.virlo.ai/api/mcp/mcp",
      "headers": {
        "Authorization": "Bearer virlo_tkn_YOUR_API_KEY"
      }
    }
  }
}
Project Info
Created At
2 months ago
Updated At
2 months ago
Author Name
Andres Rodriguez
Star
-
Language
-
License
-
Category
Homepage

Recommend Servers

View All
Docwand

14 hours ago
//beforeyouship — LLM Cost Modeling From Your Editor
@Indiegoing

Query realistic LLM cost models without leaving your editor. beforeyouship models the **true monthly cost** of an LLM app architecture — retries, prompt caching, batch discounts, infra overhead, and 3×/10× growth — across GPT-5.x, Claude, Gemini, DeepSeek, and more. Not a token calculator: a planning tool for the design phase, before you commit to a stack. **No API key needed to try it** — demo mode covers the six free-tier models. A Pro key from [beforeyouship.dev](https://beforeyouship.dev) unlocks the full 18-model catalog. ## What you can ask - "How much will a RAG chatbot cost at 10,000 requests/day?" - "Compare Claude Haiku vs Gemini Flash pricing for my workload" - "What's the cheapest model for a multi-step agent at scale?" - "Show me current per-token prices for Anthropic models" ## Tools ### `estimate_cost` Full cost model for an architecture at a given usage level. Returns Naive / Realistic / Worst Case monthly cost per model, 3×/10× growth scenarios, and an opinionated recommendation with reasoning. ### `get_model_prices` Current per-1M-token pricing — input, output, cached input, batch — with context windows and staleness metadata. ### `list_archetypes` Seven preset architecture patterns (simple chatbot, chatbot with history, RAG pipeline, multi-model router, coding assistant, document processor, multi-step agent) used as starting points for estimates. ## Setup **Claude Code:** ​```bash claude mcp add --transport http beforeyouship https://beforeyouship.dev/api/mcp ​``` **Cursor / other clients** — add a remote server: ​```json { "mcpServers": { "beforeyouship": { "type": "streamable-http", "url": "https://beforeyouship.dev/api/mcp" } } } ​``` Add an `Authorization: Bearer bys_...` header with a Pro key for the full catalog. ## Try it > Estimate the monthly cost of a RAG pipeline at 10,000 requests/day

14 hours ago