# Feed Google News headlines to Claude via MCP

**Use case:** 

Give Claude live Google News headlines through MCP. Ask about any topic and get fresh titles, sources, snippets, and links inside the conversation.

## Input

```json
{
  "searchTerms": [
    "electric vehicles"
  ],
  "timeRange": "day",
  "country": "us",
  "language": "en",
  "maxResultsPerSearch": 10
}
```

## Output

```json
{
  "result_type": {
    "label": "Result Type",
    "format": "string"
  },
  "searchTerm": {
    "label": "Search Term",
    "format": "string"
  },
  "position": {
    "label": "Position",
    "format": "integer"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "date": {
    "label": "Date",
    "format": "string"
  },
  "link": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google News Lite API](https://apify.com/johnvc/google-news-lite-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/google-news-lite-api) to learn more, explore other use cases, and run it yourself.