OpenWebSearch

search

Search the web using multiple engines (e.g., Baidu, Bing, DuckDuckGo, CSDN, Exa, Brave, Juejin(掘金)) with no API key required

Remote Aas-ee/open-websearch

Other tools also called search? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "limit": {
      "type": "number",
      "default": 10,
      "maximum": 50,
      "minimum": 1
    },
    "query": {
      "type": "string",
      "minLength": 1
    },
    "engines": {
      "type": "array",
      "items": {
        "allOf": [
          {
            "type": "string",
            "minLength": 1
          },
          {
            "enum": [
              "baidu",
              "bing",
              "linuxdo",
              "csdn",
              "duckduckgo",
              "exa",
              "brave",
              "juejin"
            ],
            "type": "string"
          }
        ]
      },
      "default": [
        "duckduckgo"
      ],
      "minItems": 1
    }
  }
}