Brave Search

brave_image_search

Performs an image search using the Brave Search API. Helpful for when you need pictures of people, places, things, graphic design ideas, art inspiration, and more. When relaying results in a markdown environment, it may be helpful to include images in the results (e.g., ![image.title](image.properties.url)).

Remote brave

Other tools also called brave_image_search? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "default": 50,
      "maximum": 200,
      "minimum": 1,
      "description": "Number of results (1-200, default 50). Combine this parameter with `offset` to paginate search results."
    },
    "query": {
      "type": "string",
      "maxLength": 400,
      "minLength": 1,
      "description": "The user's search query. Query cannot be empty. Limited to 400 characters and 50 words."
    },
    "country": {
      "type": "string",
      "default": "US",
      "description": "Search query country, where the results come from. The country string is limited to 2 character country codes of supported countries."
    },
    "safesearch": {
      "enum": [
        "off",
        "strict"
      ],
      "type": "string",
      "default": "strict",
      "description": "Filters search results for adult content. The following values are supported: 'off' - No filtering. 'strict' - Drops all adult content from search results."
    },
    "spellcheck": {
      "type": "boolean",
      "default": true,
      "description": "Whether to spellcheck provided query."
    },
    "search_lang": {
      "type": "string",
      "default": "en",
      "description": "Search language preference. The 2 or more character language code for which the search results are provided."
    }
  }
}