A MCP server that supports searching for Bilibili content. Provides LangChain integration examples and test scripts.
Claude Desktop config.json'a ekle
{
"mcpServers": {
"34892002-bilibili-mcp-js": {
"command": "node",
"args": [
"~/.mcp/bilibili-mcp-js/index.js"
]
}
}
} Kaynak kodu al ve yerel olarak çalıştır
git clone https://github.com/34892002/bilibili-mcp-js.git ~/.mcp/bilibili-mcp-js
cd ~/.mcp/bilibili-mcp-js 这是一个基于 Model Context Protocol (MCP) 的 B站视频搜索服务器。该服务器提供了简单的 API 接口,允许用户搜索 B站 的视频内容。提供LangChain调用示例、测试脚本。
以Trae为例

感谢HQHC发布的npm包
{
"mcpServers": {
"bilibili-search": {
"command": "npx",
"args": ["bilibili-mcp-js"],
"description": "B站视频搜索 MCP 服务,可以在AI应用中搜索B站视频内容。"
}
}
}
需要编译之后才可以使用. 先npm run build然后这里改成你build之后的dist文件夹路径,“args”: [“d:\your-path\bilibili-mcp-js\dist\index.js”]
{
"mcpServers": {
"bilibili-search": {
"command": "node",
"args": ["d:\\your-path\\bilibili-mcp-js\\dist\\index.js"],
"description": "B站视频搜索 MCP 服务,可以在AI应用中搜索B站视频内容。"
}
}
}
如果要运行langchain例子,请先配置llm模型,修改.\example.ts文件。
const llm = new ChatOpenAI({
modelName: "gpt-4o-mini",
temperature: 0,
openAIApiKey: "your_api_key", // 替换成你模型的密钥
configuration: {
baseURL: "https://www.api.com/v1", // 替换成你模型的API地址
},
});
bun:
# 安装依赖
bun i
# stdio 模式
bun index.ts
# streamable http 模式
TRANSPORT=remote bun index.ts
TRANSPORT=remote PORT=8888 bun index.ts
# 测试脚本
bun test.js
# MCP Inspector
bun run inspector
# 运行langchain例子
bun build:bun
bun example.ts
npm:
# 安装依赖
npm i
# stdio 模式
npm run start
# streamable http 模式
TRANSPORT=remote npm run start
TRANSPORT=remote PORT=8888 npm run start
# 测试脚本
npm run test
# MCP Inspector
npm run inspector
# 运行langchain例子
npm run build
node dist/example.js

A hosted deployment is available on Fronteir AI.
Browser automation capabilities using Puppeteer, both support local and remote browser connection.
Official Microsoft Playwright MCP server, enabling LLMs to interact with web pages through structured accessibility snapshots
Automates browser-based workflows using LLMs and computer vision — navigate pages, fill forms, extract data, handle authentication, and automate any website via natural language
Automate your local Chrome browser
An MCP server using Playwright for browser automation and webscrapping
Automate browser interactions in the cloud (e.g. web navigation, data extraction, form filling, and more)