get-douban-rank
Retrieve real-time rankings of popular books, movies, TV shows, and variety programs from Douban, including ratings and trending data, via Trends Hub's MCP server.
Instructions
获取豆瓣实时热门榜单,提供当前热门的图书、电影、电视剧、综艺等作品信息,包含评分和热度数据
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | ||
start | No | ||
type | No | subject |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"count": {
"default": 10,
"type": "integer"
},
"start": {
"default": 0,
"type": "integer"
},
"type": {
"anyOf": [
{
"const": "subject",
"description": "图书、电影、电视剧、综艺等",
"type": "string"
},
{
"const": "movie",
"description": "电影",
"type": "string"
},
{
"const": "tv",
"description": "电视剧",
"type": "string"
}
],
"default": "subject"
}
},
"type": "object"
}