The Veedcrawl MCP server implements the Model Context Protocol so any compatible AI host — Claude, Cursor, Windsurf, and others — can call Veedcrawl’s APIs directly from a conversation or agent loop. Once installed, your agent can pull structured data from any public video on YouTube, TikTok, Instagram, X/Twitter, or Facebook, and explore creator profiles without needing to know a single video URL in advance.Documentation Index
Fetch the complete documentation index at: https://docs.veedcrawl.com/llms.txt
Use this file to discover all available pages before exploring further.
The package is published as
@veedcrawl/mcp on npm. You need a Veedcrawl API key to use it — get one at veedcrawl.com.What the MCP server exposes
Five tools are registered automatically when the server starts. Each tool maps to a Veedcrawl API endpoint and returns a structured JSON result directly to your agent.| Tool | What it returns |
|---|---|
get_video_metadata | Title, description, author, view/like/comment counts, tags, duration, thumbnails |
get_video_transcript | Full spoken transcript with timestamps — uses native captions or AI-generated speech-to-text |
extract_from_video | Structured answer to any prompt: hooks, CTAs, sentiment, topics, claims, quotes — guided by optional JSON Schema |
get_tiktok_profile | Creator bio, total video count, and up to 24 recent TikToks with full engagement stats per video |
get_instagram_profile | Creator bio, verified status, follower/following/post counts, and up to 24 recent posts (video, image, carousel) with per-post stats |
Why profile tools change everything
Every other video API requires you to already know a video URL. That means your agent is stuck doing retrieval — fetching content you already found.get_tiktok_profile and get_instagram_profile unlock discovery. Hand the agent a username. It comes back with who the creator is, how large their audience is, and exactly what they’ve been posting — without a single URL from you. Then it can chain into transcripts and extraction on its own.
For example, to audit a creator from scratch:
Next steps
Install the MCP server
Install
@veedcrawl/mcp and configure it in Claude Desktop, Claude Code, Cursor, or Windsurf.Tools reference
Full parameter and return value documentation for all five tools.