All five tools are registered automatically the moment the MCP server starts — no additional configuration required. Your agent can call any of them by name once the server is connected to your host.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.
get_video_metadata
get_video_metadata
Fetch structured metadata for any public video URL. Returns synchronously with no polling.Returns: platform, title, description, author info, view/like/comment/share counts, duration, thumbnails, tags, and publish timestamp.
Public video URL from YouTube, TikTok, Instagram, X/Twitter, or Facebook.
get_video_transcript
get_video_transcript
Return the complete transcript for a video. The server handles all async polling internally — your agent receives the finished result when the job is done.Returns: completed transcript job object with full text and timestamps.
Public video URL or direct media file URL.
Transcription strategy:
native— use platform-provided captions onlygenerate— run AI speech-to-text onlyauto— try native captions first, fall back to AI speech-to-text
Language hint for transcription, e.g.
en, es, ur. Optional.extract_from_video
extract_from_video
Ask any question about a video and receive a structured answer. Optionally constrain the output shape with a JSON Schema. The server handles all async polling internally.Returns: completed extraction job object with the structured result.Example prompts:
Public video URL or direct media file URL.
What to extract or analyze from the video. Up to 4096 characters.
Language hint for transcription, e.g.
en, es, ur. Optional.JSON Schema to constrain the structure of the extraction output. Optional.
"Extract the hook, main argument, and call to action""List every product mentioned with the timestamp it appears""What claims does the speaker make? Rate each one as factual, opinion, or unverified""Rewrite this as a Twitter thread"
get_tiktok_profile
get_tiktok_profile
Fetch a TikTok creator’s public profile snapshot. Returns author info, total video count, and recent videos with full per-video engagement stats.Returns: author bio and stats, plus an array of recent videos. Each video object includes views, likes, comments, shares, caption, hashtags, thumbnail, and publish timestamp. You can pass any video’s URL directly into
TikTok username, with or without the leading
@. Required if url is not provided.Full TikTok profile URL, e.g.
https://www.tiktok.com/@creator. Required if username is not provided.Number of recent videos to return. Accepts 1–24.
get_video_transcript or extract_from_video.get_instagram_profile
get_instagram_profile
Fetch an Instagram creator’s public profile snapshot. Returns verified status, follower and following counts, total post count, and recent content.Returns: author bio, verified flag, follower/following/post counts, and an array of recent posts. Each post includes its type (
Instagram username, with or without the leading
@. Required if url is not provided.Full Instagram profile URL, e.g.
https://www.instagram.com/creator/. Required if username is not provided.Number of recent posts to return. Accepts 1–24.
video, post for images, or sidecar for carousels), along with views, likes, comments, caption, and publish timestamp. Video posts also include a direct videoUrl you can pass into get_video_transcript.