MCP server intelligence profile

Bilibili MCP Server

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

Local Only34892002
Awaiting current scanNpm · 0.1.3

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
8Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install bilibili-mcp-js from npm

Version 0.1.3 declares 1 executable entrypoint.

npm install --save-exact bilibili-mcp-js@0.1.3
npx -y -p bilibili-mcp-js@0.1.3 bilibili-mcp
MCP client configuration example
{
  "mcpServers": {
    "bilibili-mcp-js": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "bilibili-mcp-js@0.1.3",
        "bilibili-mcp"
      ]
    }
  }
}

Identity

Canonical slugbilibili-mcp-server-c98bb5dcDeploymentLocal Only
Canonical packagenpm:bilibili-mcp-jsRepository34892002/bilibili-mcp-js
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmbilibili-mcp-js0.1.31Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmbilibili-mcp-js0.1.3CurrentSep 5, 20268 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
bilibili-searchServer-reported name
1Capability groups
Aug 14, 2026Observed

Tools 8

ToolCategoryAnnotationsRisk
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"
  ]
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Bilibili MCP Server questions

How do I install Bilibili MCP Server?

Install the selected package version with: npm install --save-exact bilibili-mcp-js@0.1.3

What tools does Bilibili MCP Server provide?

Bilibili MCP Server exposed 8 tools during independent protocol observation, including bilibili-bangumi-timeline, bilibili-hot, bilibili-search-summary, bilibili-user-complete, bilibili-user-info, bilibili-user-stat, bilibili-user-videos, bilibili-video-detail.

Is Bilibili MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.