mcp-bocha_search
Search the web with time filters, domain inclusion/exclusion, and summarized results using Bocha AI's API. Ideal for retrieving targeted and relevant information efficiently.
Instructions
Search the web for information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | ||
exclude | No | ||
freshness | No | ||
include | No | ||
query | Yes | ||
summary | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"count": {
"type": "number"
},
"exclude": {
"items": {
"type": "string"
},
"type": "array"
},
"freshness": {
"enum": [
"oneDay",
"oneWeek",
"oneMonth",
"oneYear",
"noLimit"
],
"type": "string"
},
"include": {
"items": {
"type": "string"
},
"type": "array"
},
"query": {
"type": "string"
},
"summary": {
"type": "boolean"
}
},
"required": [
"query"
],
"type": "object"
}