drio
Open app

Bilibili API MCP Server

Source

MCP Server for the Bilibili API, supporting various operations.

Catalog onlyCatalog onlySTDIO

Overview

Bilibili API MCP Server is a server designed to interact with the Bilibili API, enabling various operations related to Bilibili's services.

To use the Bilibili API MCP Server, set up the server environment, configure the necessary parameters, and make API calls to perform operations supported by the Bilibili API.

  • Supports multiple operations with the Bilibili API. - Built using Python for easy integration and customization. - Open-source and available on GitHub for community contributions.
  1. Automating interactions with Bilibili's video upload and management features.
  2. Fetching user data and statistics from Bilibili.
  3. Integrating Bilibili services into other applications or platforms.

Add to your AI client

Use these steps to connect Bilibili API MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "bilibili-mcp-server-huccihuang": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-bilibili-mcp-server-huccihuang"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "bilibili-mcp-server-huccihuang": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-bilibili-mcp-server-huccihuang"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "bilibili-mcp-server-huccihuang": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-bilibili-mcp-server-huccihuang"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "bilibili-mcp-server-huccihuang": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-bilibili-mcp-server-huccihuang"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "bilibili-mcp-server-huccihuang": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-bilibili-mcp-server-huccihuang"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "bilibili-mcp-server-huccihuang": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-bilibili-mcp-server-huccihuang"
      ]
    }
  }
}

FAQ

What programming language is used for the Bilibili API MCP Server?

The server is built using Python, making it accessible for developers familiar with this language.

Is the Bilibili API MCP Server open-source?

Yes! The server is open-source and can be found on GitHub.

Can I contribute to the Bilibili API MCP Server?

Absolutely! Contributions are welcome, and you can submit pull requests on the GitHub repository.