get_show_videos
Fetch video and trailer content for a specific TV show by providing its title using this MCP server tool. Designed to simplify accessing related media for tv-recommender systems.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
show_title | Yes | 剧集名称,用于获取预告片和视频 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"show_title": {
"description": "剧集名称,用于获取预告片和视频",
"type": "string"
}
},
"required": [
"show_title"
],
"type": "object"
}