python

by baidubce
An MCP server integrating Baidu AI search API for web search and LLM summarization.

Baidu AISearch MCP Server

Overview

The Baidu AISearch MCP Server is an implementation that integrates the Baidu AI search API, providing web search capabilities and summaries for large language models (LLMs). This component combines Baidu's powerful search engine with advanced large model technology, enabling intelligent and contextually aware responses with real-time information from across the internet.

Features

  • Integration of Search and Large Model Technology: Seamlessly merges Baidu’s search engine with advanced LLM technology.
  • Real-time Information Access: Provides up-to-date information from the entire web.
  • Versatile Applications: Supports a wide range of industries and scenarios.
  • Standardized and Customizable Features: Allows customization of personas, model selection, question rewriting, search scopes, and more.
  • Enhanced Performance and Availability: Delivers high performance and reliability.
  • Comprehensive Content Safety: Ensures all responses are compliant with content safety standards.

Tools

AIsearch

  • Execute web searches with pagination and filtering.
  • Inputs:
  • query (str): The search request.
  • stream (bool, optional): Whether to receive response data in streaming format. Defaults to False.
  • instruction (Instruction, optional): Instruction information object. Defaults to None.
  • temperature (float, optional): Controls the randomness of generated text. Defaults to 1e-10.
  • top_p (float, optional): Cumulative probability threshold for controlling text diversity. Defaults to 1e-10.
  • search_top_k (int, optional): Number of search candidate results. Defaults to 4.
  • hide_corner_markers (bool, optional): Whether to hide boundary markers in the response. Defaults to True.

Configuration

Getting an API Key

Refer to this webpage to obtain your API key.

Usage with Claude Desktop

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "AB Component Server": {
      "command": "/path/to/your/python3.12",
      "args": [
        "/path/to/your/ai_search_server.py"
      ],
      "envs": {
        "APPBUILDER_TOKEN": "{AppBuilder API Key}"
      }
    }
  }
}

Usage with Cursor

The format of the api_key is Bearer+, where the + must be retained. Example: Bearer+bce-v3/ALTAK-xuZRMCVTC9######.

{
  "mcpServers": {
    "AISearch": {
      "url": "http://appbuilder.baidu.com/v2/ai_search/mcp/sse?api_key={Bearer+<AppBuilder API Key>}"
    }
  }
}

License

Copyright (c) 2024 Baidu, Inc. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Features & Capabilities

Categories
mcp_server model_context_protocol python ai_search api_integration baidu llm

Implementation Details

Stats

0 Views
502 GitHub Stars

Repository Info

baidubce Organization

Similar MCP Servers

continuedev_continue by continuedev
25049
21423
9300