Bilibili MCP Server by 34892002
36 score
An MCP server that enables users to search Bilibili videos, access trending rankings, and retrieve detailed information about videos, content creators, and anime schedules. It allows AI applications to interact directly with Bilibili content via simple API interfaces.
Ranked #1299 out of 3252 indexed tools.
Is this your tool? Claim this listing to add maintainer context, get a verified badge, and unlock analytics.
Claim listing → Signal Breakdown
Installs 54
Freshness 5mo ago
Issue Health 100%
Stars 160
Platform Breadth 1 platform
Contributors 3
Description Detailed
How to Improve
Freshness high impact
Platforms medium impact
Supported Platforms
From the README
# Bilibili MCP
## 简介
这是一个基于 Model Context Protocol (MCP) 的 B站视频搜索服务器。该服务器提供了简单的 API 接口,允许用户搜索 B站 的视频内容。提供LangChain调用示例、测试脚本。
## 鸣谢
- LangChain 示例代码参考自 [mcp-langchain-ts-client](https://github.com/isaacwasserman/mcp-langchain-ts-client)
## 功能特点
- 搜索B站视频内容简介列表
- 获取B站热门内容(综合热门、入站必刷、排行榜、全站音乐榜)
- 获取B站视频详情信息(支持BV号或AV号)
- 获取UP主信息(基本信息、粉丝数、关注数等)
- 番剧时间表(时间范围内的番剧播出信息)
## 系统要求
- Node.js >= 20.12.0
## AI工具使用配置
以Trae为例
## npm package
感谢[HQHC](https://github.com/HQHC)发布的npm包
```json
{
"mcpServers": {
"bilibili-search": {
"command": "npx",
"args": ["bilibili-mcp-js"],
"description": "B站视频搜索 MCP 服务,可以在AI应用中搜索B站视频内容。"
}
}
}
```
## 本地编译使用
>需要编译之后才可以使用.
先npm run build然后这里改成你build之后的dist文件夹路径,"args": ["d:\\your-path\\bilibili-mcp-js\\dist\\index.js"]
```json
{
"mcpServers": {
"bilibili-search": {
"command": "node",
"args": ["d:\\your-path\\bilibili-mcp-js\\dist\\index.js"],
"description": "B站视频搜索 MCP 服务,可以在AI应用中搜索B站视频内容。"
}
}
}
```
## 快速开始
> 如果 Read full README on GitHub →