# Google Lens Visual Search From Claude via MCP

**Use case:** 

Point Claude at Google Lens style visual search through MCP: send an image URL mid-chat, get matches with title, source and url back as structured JSON.

## Input

```json
{
  "image_url": "https://i.imgur.com/HBrB8p0.png",
  "search_type": "products",
  "max_results": 20
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "inStock": {
    "label": "In stock",
    "format": "boolean"
  },
  "url": {
    "label": "Page URL",
    "format": "string"
  },
  "thumbnail": {
    "label": "Thumbnail",
    "format": "string"
  },
  "image": {
    "label": "Full image URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Lens API | Reverse Image and Visual Product Search](https://apify.com/johnvc/google-lens-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/google-lens-api) to learn more, explore other use cases, and run it yourself.