Loading...

Bilibili MCP server provides API access to search videos, get video details, user info, and anime schedules from Bilibili.
Boost this tool
Subscribe to listing upgrades or segmented pushes.
Bilibili MCP server provides API access to search videos, get video details, user info, and anime schedules from Bilibili.
This MCP server is relatively safe due to its read-only nature and lack of direct system access. However, network access and reliance on an external API introduce potential risks that should be considered in deployment.
Performance is dependent on the Bilibili API's response times and network latency. Caching mechanisms could be implemented to improve response times for frequently accessed data.
Cost considerations primarily involve the resources required to run the Node.js server. There may be costs associated with Bilibili API usage if rate limits are exceeded or if Bilibili introduces paid API tiers.
{
"mcpServers": {
"bilibili-search": {
"command": "npx",
"args": ["bilibili-mcp-js"],
"description": "B站视频搜索 MCP 服务,可以在AI应用中搜索B站视频内容。"
}
}
}searchBilibiliVideosSearches Bilibili for videos based on provided keywords and returns a list of video summaries.
Read-only operation; retrieves data without modifying any system state.
getBilibiliHotContentRetrieves Bilibili's trending content, including popular videos and music charts.
Read-only operation; fetches data without altering any system state.
getBilibiliVideoDetailsFetches detailed information about a specific Bilibili video using its BV or AV number.
Read-only operation; retrieves data without modifying any system state.
getBilibiliUserInfoRetrieves information about a Bilibili user, including basic details and follower counts.
Read-only operation; retrieves data without modifying any system state.
getBilibiliAnimeScheduleRetrieves the airing schedule for anime series within a specified time range.
Read-only operation; retrieves data without modifying any system state.
None
hybrid
This MCP server is relatively safe due to its read-only nature and lack of direct system access. However, network access and reliance on an external API introduce potential risks that should be considered in deployment.
The server operates in read-only mode, limiting the potential for unintended modifications. Sandboxing further isolates the server from the host system.
Production Tip
Implement robust error handling and logging to monitor the server's performance and identify potential issues.
You can retrieve video search results, trending content, video details, user information, and anime schedules from Bilibili.
No, authentication is not required for the current version of the server.
No, this server only supports read-only operations and cannot be used to modify Bilibili content.
Changes to the Bilibili API may break the server's functionality. Updates to the server code will be required to adapt to the new API.
You can monitor the server's performance by implementing logging and integrating monitoring tools.
Yes, there may be rate limits imposed by Bilibili. You should implement error handling to manage rate limiting and avoid exceeding the limits.
No, this server does not store any sensitive information such as API keys or user credentials.