search
Search Baidu and retrieve formatted results with options to control the number of outputs and enable deep content analysis for enhanced web data extraction.
Instructions
Search Baidu and return formatted results.
Args:
query: The search query string
max_results: Maximum number of results to return (default: 6)
deep_mode: Deep search the web content (default: False)
ctx: MCP context for logging
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deep_mode | No | ||
max_results | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"deep_mode": {
"default": false,
"title": "Deep Mode",
"type": "boolean"
},
"max_results": {
"default": 6,
"title": "Max Results",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "searchArguments",
"type": "object"
}