tiktok_video_info
Extract detailed metadata including stats, audio, hashtags, and descriptions from any TikTok video URL to analyze content performance and structure.
Instructions
Get detailed metadata for a specific TikTok video (stats, audio, hashtags, description).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| video_url | Yes | TikTok video URL or video ID |
Implementation Reference
- tiktok_mcp/server.py:243-246 (handler)The handler implementation for 'tiktok_video_info' which calls 'browser.get_video_info'.
elif name == "tiktok_video_info": info = await browser.get_video_info(arguments["video_url"]) return [TextContent(type="text", text=json.dumps(info, indent=2, ensure_ascii=False))] - tiktok_mcp/server.py:97-106 (schema)The tool definition and input schema for 'tiktok_video_info'.
Tool( name="tiktok_video_info", description="Get detailed metadata for a specific TikTok video (stats, audio, hashtags, description).", inputSchema={ "type": "object", "properties": { "video_url": {"type": "string", "description": "TikTok video URL or video ID"}, }, "required": ["video_url"], },