1. Conduid
  2. Developer Tools
  3. Baidu Search MCP
MCP server · Developer Tools

Baidu Search MCP

MCP server: Baidu Search MCP

Unclaimed MIT last commit a year ago devtools
45Fair

Scored 3 months ago · breakdown

About Baidu Search MCP

Baidu Search MCP is an MCP server published by appleinmusic in the Developer Tools category: mCP server: Baidu Search MCP. It has been installed 0 times through Conduid.

The repository has 7 stars and 1 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx baidu-search-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Baidu Search MCP

Powered by Claude · Grounded in docs

I know everything about Baidu Search MCP. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

Baidu Search MCP Server

这是一个用于 Model Context Protocol (MCP) 的百度搜索服务器实现,它允许AI助手使用百度文心API进行智能搜索。

功能特性

  • 支持使用百度文心API进行智能搜索
  • 支持多种模型选择(ernie-3.5-8k, ernie-4.0-8k, deepseek-r1, deepseek-v3)
  • 提供搜索结果和参考来源
  • 支持深度搜索和时效性过滤

安装

npm install @modelcontextprotocol/sdk axios

配置

  1. 首先需要获取百度文心API密钥:

  2. 设置环境变量:

export BAIDU_API_KEY=your_api_key_here

使用方法

作为独立服务器运行

node build/index.js

在MCP配置中使用

在你的MCP设置文件中添加以下配置:

{
  "mcpServers": {
    "baidu-search": {
      "command": "node",
      "args": ["/path/to/baidu-search-mcp/build/index.js"],
      "env": {
        "BAIDU_API_KEY": "your_api_key_here"
      },
      "disabled": false,
      "autoApprove": []
    }
  }
}

API

baidu_search

搜索工具支持以下参数:

  • query (必需): 搜索查询文本
  • model: 使用的模型名称
    • 可选值: "ernie-3.5-8k", "ernie-4.0-8k", "deepseek-r1", "deepseek-v3"
    • 默认值: "ernie-3.5-8k"
  • search_mode: 搜索模式
    • 可选值: "auto", "required", "disabled"
    • 默认值: "auto"
  • enable_deep_search: 是否开启深度搜索(默认:false)
  • search_recency_filter: 搜索结果的时效性范围
    • 可选值: "week", "month", "semiyear", "year"

开发

  1. 克隆仓库
  2. 安装依赖:
npm install
  1. 编译TypeScript:
npm run build

许可证

MIT License

贡献

欢迎提交 Issues 和 Pull Requests!

免责声明

本项目不对API密钥的使用承担责任,请确保遵守百度文心API的使用条款和政策。

README mirrored from the source repository 3 months ago. The original is authoritative.

Questions

About Baidu Search MCP

How do I install Baidu Search MCP?

Run npx baidu-search-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Baidu Search MCP safe to use with an AI agent?

Its trust score is 45 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Baidu Search MCP still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.