bilibili-bangumi-timeline获取B站番剧时间表,支持查询指定时间范围内的番剧播出信息Input schema{
"type": "object",
"properties": {
"types": {
"type": "number",
"description": "内容类型,1表示番剧/动漫(默认:1,目前仅支持番剧类型)",
"default": 1,
"enum": [
1
]
},
"before": {
"type": "number",
"description": "获取当前时间之前多少天的播出信息(默认:6天,建议不超过7天以避免API限制)",
"default": 6,
"minimum": 0,
"maximum": 7
},
"after": {
"type": "number",
"description": "获取当前时间之后多少天的播出信息(默认:6天,建议不超过7天以避免API限制)",
"default": 6,
"minimum": 0,
"maximum": 7
}
},
"required": [],
"additionalProperties": false
} | — | | — |
bilibili-hot获取B站热门内容Input schema{
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "热门类型:all(综合热门)、history(入站必刷)、rank(排行榜)、music(全站音乐榜)",
"enum": [
"all",
"history",
"rank",
"music"
],
"default": "all"
}
},
"required": []
} | — | | — |
bilibili-search-summary搜索B站视频内容简介列表Input schema{
"type": "object",
"properties": {
"keyword": {
"type": "string",
"description": "搜索关键词"
},
"page": {
"type": "number",
"description": "页码(默认:1)",
"minimum": 1
},
"limit": {
"type": "number",
"description": "返回结果数量(默认:10)",
"minimum": 1,
"maximum": 20
}
},
"required": [
"keyword"
]
} | — | | — |
bilibili-user-complete获取UP主完整信息(包含基本信息和统计信息)Input schema{
"type": "object",
"properties": {
"uid": {
"type": "string",
"description": "UP主的UID(用户ID)"
}
},
"required": [
"uid"
]
} | — | | — |
bilibili-user-info获取UP主基本信息Input schema{
"type": "object",
"properties": {
"uid": {
"type": "string",
"description": "UP主的UID(用户ID)"
}
},
"required": [
"uid"
]
} | — | | — |
bilibili-user-stat获取UP主统计信息(粉丝数、关注数等)Input schema{
"type": "object",
"properties": {
"uid": {
"type": "string",
"description": "UP主的UID(用户ID)"
}
},
"required": [
"uid"
]
} | — | | — |
bilibili-user-videos暂不支持-获取UP主视频列表Input schema{
"type": "object",
"properties": {
"uid": {
"type": "string",
"description": "UP主的UID(用户ID)"
},
"page": {
"type": "number",
"description": "页码(默认:1)",
"minimum": 1,
"default": 1
},
"pageSize": {
"type": "number",
"description": "每页数量(默认:20)",
"minimum": 1,
"maximum": 50,
"default": 20
},
"order": {
"type": "string",
"description": "排序方式:pubdate(发布时间)、click(播放量)、stow(收藏量)",
"enum": [
"pubdate",
"click",
"stow"
],
"default": "pubdate"
}
},
"required": [
"uid"
]
} | — | | — |
bilibili-video-detail获取B站视频详情信息Input schema{
"type": "object",
"properties": {
"videoId": {
"type": "string",
"description": "视频ID,支持BV号(如:BV1xx411c7mD)或AV号(如:av123456或123456)"
}
},
"required": [
"videoId"
]
} | — | | — |