MCP-Native · No infrastructure required

Give any AI agent eyes and ears for social media

Scrape TikTok, YouTube, and Instagram. Comprehend video with multimodal AI. Deliver structured understanding to your agent via MCP or REST — in one call.

3
Platforms
15+
Scrape Actions
1
Line to Install
0
Infra to Manage

Everything your agent needs to understand social

From raw data to structured comprehension — the full pipeline, managed and metered.

Multi-Platform Scraping

TikTok, YouTube, and Instagram — search, profiles, hashtags, videos, comments, and posts. 15+ structured scrape actions with rate-managed Apify actors.

AI Comprehension

Gemini and DashScope multimodal models understand video content — scenes, transcripts, entities, emotional arcs, and brand-safety flags with confidence scores.

MCP-Native

One-line install. Your agent gets scrape, comprehend, and billing tools via the Model Context Protocol. Streamable HTTP — no SDK, no glue code.

Credit-Based Billing

Pay as you go. Credits are minor-unit integers — transparent, metered per action class. Set spend caps, buy packs, configure auto-topup.

Real-time Streaming

Stream comprehension results as they're generated via Server-Sent Events. Partial results with depth control — raw or pre-digested insights.

Actor Health Monitoring

Per-tool metrics, cost tracking, and margin monitoring. Know which actors are healthy, what each call costs, and where to optimize.

Three steps from URL to understanding

No pipelines to build. No models to host. Just point your agent at a URL.

Scrape

Call a scrape action — search, profile, hashtag, video, comments. Apify actors fetch structured data from TikTok, YouTube, or Instagram.

Comprehend

Pass any media URL to understand_media. Gemini/DashScope multimodal models produce a structured, confidence-scored comprehension.

Deliver via MCP/API

Your agent receives the result as a tool call response — or via REST. One-line MCP install, streaming supported, credits deducted transparently.

Try it — no signup required

Paste any public TikTok, YouTube, or Instagram URL. We'll fetch, comprehend, and structure it. Rate-limited per IP.

Paste a URL above and click Analyze to see a live comprehension result.

Simple, credit-based pricing

Pay for what you use. Credits never expire. No infrastructure fees.

Starter

$19/mo

500 credits / month

  • All scrape actions
  • AI comprehension (raw depth)
  • MCP + REST access
  • 1 API key
  • Community support
Choose Plan

Enterprise

Custom

Volume credits + SLA

  • Everything in Pro
  • Custom credit volumes
  • Dedicated actors
  • Unlimited API keys
  • SSO + audit logs
  • Dedicated support + SLA
Contact Sales

One line to install. One call to understand.

No SDK. No glue code. Your agent gets the tools it needs.

MCP Install
# Add to your MCP client config (Claude, Cursor, etc.)
npx @social-connectors/mcp --url https://matane.pawbytes.io/mcp --key sc_live_yourkey
Sample Tool Call
# Your agent now has these tools:
tools:
  - scrape_tiktok_search     # { queries: ["skincare"], resultsPerPage: 10 }
  - understand_media         # { url: "https://tiktok.com/@x/video/123" }
  - account                  # { } → check balance

# Example: comprehend a TikTok video
{
  "tool": "understand_media",
  "input": {
    "url": "https://www.tiktok.com/@glossy/video/7280...",
    "depth": "raw"
  }
}

# Returns structured JSON:
{
  "media_ref": { "platform": "tiktok", "identity_type": "content_hash" },
  "scenes": [{ "start_time": 0, "description": "..." }],
  "transcript": { "full_text": "..." },
  "entities": { "products": [{ "name": "..." }] },
  "brand_safety_flags": { "is_safe": true },
  "confidence": 0.92
}