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.
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
.Refer to this webpage to obtain your API key.
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}"
}
}
}
}
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>}"
}
}
}
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.