parse_douyin_video_info
Extract video details from Douyin share links using the MCP server. Input a share link to receive structured video information in JSON format for analysis or integration.
Instructions
解析抖音分享链接,获取视频基本信息
参数:
- share_link: 抖音分享链接或包含链接的文本
返回:
- 视频信息(JSON格式字符串)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
share_link | Yes |
Input Schema (JSON Schema)
{
"properties": {
"share_link": {
"title": "Share Link",
"type": "string"
}
},
"required": [
"share_link"
],
"title": "parse_douyin_video_infoArguments",
"type": "object"
}