Bilibili MCP Server
An MCP server powered by public Bilibili APIs so AI agents can search videos and read public video and creator metadata.
README
🎬 Bilibili MCP Server
一个基于 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 -->
Features
- No login, no cookie, public APIs only
- Built with Python and FastMCP
- Ready for Claude Desktop and Cursor
- Includes basic error handling for timeout, HTTP failures, and Bilibili API errors
Installation
Option 1: pip
git clone https://github.com/12qw3er4ty5u-collab/bilibili-mcp-server.git
cd bilibili-mcp-server
python -m venv .venv
Windows:
.venv\Scripts\activate
pip install -r requirements.txt
copy .env.example .env
macOS / Linux:
source .venv/bin/activate
pip install -r requirements.txt
cp .env.example .env
Run:
python server.py
Option 2: uv
git clone https://github.com/12qw3er4ty5u-collab/bilibili-mcp-server.git
cd bilibili-mcp-server
uv venv
Windows:
.venv\Scripts\activate
uv pip install -r requirements.txt
copy .env.example .env
macOS / Linux:
source .venv/bin/activate
uv pip install -r requirements.txt
cp .env.example .env
Run:
uv run server.py
Configuration
Claude Desktop
Add 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"
}
}
}
Cursor
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"
}
}
}
Tools
| 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 |
Public APIs Used
- Search:
https://api.bilibili.com/x/web-interface/search/type?search_type=video&keyword=... - Video info:
https://api.bilibili.com/x/web-interface/view?bvid=... - User info:
https://api.bilibili.com/x/web-interface/card?mid=...
This project does not use login, cookies, or private endpoints.
本项目不使用登录、Cookie 或任何私有接口。
Contributing
Issues and pull requests are welcome.
欢迎提交 Issue 和 Pull Request。
License
MIT License. See LICENSE for details.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.