Bilibili Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Bilibili Mcp Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
一个基于 Bilibili 公开 API 的 MCP Server,让 AI Agent 能搜索视频并读取公开视频与 UP 主信息。 An MCP server powered by public Bilibili APIs so AI agents can search videos and read public video and creator metadata.
<!-- demo gif here -->
git clone https://github.com/12qw3er4ty5u-collab/bilibili-mcp-server.git
cd bilibili-mcp-server
python -m venv .venvWindows:
.venv\Scripts\activate
pip install -r requirements.txt
copy .env.example .envmacOS / Linux:
source .venv/bin/activate
pip install -r requirements.txt
cp .env.example .envRun:
python server.pygit clone https://github.com/12qw3er4ty5u-collab/bilibili-mcp-server.git
cd bilibili-mcp-server
uv venvWindows:
.venv\Scripts\activate
uv pip install -r requirements.txt
copy .env.example .envmacOS / Linux:
source .venv/bin/activate
uv pip install -r requirements.txt
cp .env.example .envRun:
uv run server.pyAdd the following snippet to your Claude Desktop MCP config:
{
"mcpServers": {
"bilibili-mcp-server": {
"command": "python",
"args": ["server.py"],
"cwd": "./bilibili-mcp-server"
}
}
}If you prefer uv:
{
"mcpServers": {
"bilibili-mcp-server": {
"command": "uv",
"args": ["run", "server.py"],
"cwd": "./bilibili-mcp-server"
}
}
}Add the following snippet to your Cursor MCP config:
{
"mcpServers": {
"bilibili-mcp-server": {
"command": "python",
"args": ["server.py"],
"cwd": "./bilibili-mcp-server"
}
}
}If you prefer uv:
{
"mcpServers": {
"bilibili-mcp-server": {
"command": "uv",
"args": ["run", "server.py"],
"cwd": "./bilibili-mcp-server"
}
}
}| Tool | Description | Parameters | Returns |
|---|---|---|---|
search_videos | Search public Bilibili videos by keyword. / 按关键词搜索公开视频。 | keyword: str, limit: int = 10 | Video list with title, link, play count, and bvid |
get_video_info | Get one video's public details by bvid. / 按 bvid 获取视频详情。 | bvid: str | Title, description, uploader, play count, and link |
get_user_info | Get a creator's public profile by uid. / 按 uid 获取 UP 主信息。 | uid: int | Name, follower count, bio, and profile URL |
https://api.bilibili.com/x/web-interface/search/type?search_type=video&keyword=...https://api.bilibili.com/x/web-interface/view?bvid=...https://api.bilibili.com/x/web-interface/card?mid=...This project does not use login, cookies, or private endpoints. 本项目不使用登录、Cookie 或任何私有接口。
Issues and pull requests are welcome. 欢迎提交 Issue 和 Pull Request。
MIT License. See LICENSE for details.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.