Google News MCP Server
by ChanMeng666
google_news_search
Search Google News for articles and news content. Results will be automatically categorized by topic.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gl | No | Country code (e.g., us, uk) | us |
hl | No | Language code (e.g., en) | en |
publication_token | No | Publication token for specific publishers | |
q | No | Search query | |
section_token | No | Section token for specific sections | |
story_token | No | Story token for full coverage of a story | |
topic_token | No | Topic token for specific news topics |
Input Schema (JSON Schema)
{
"properties": {
"gl": {
"default": "us",
"description": "Country code (e.g., us, uk)",
"type": "string"
},
"hl": {
"default": "en",
"description": "Language code (e.g., en)",
"type": "string"
},
"publication_token": {
"description": "Publication token for specific publishers",
"type": "string"
},
"q": {
"description": "Search query",
"type": "string"
},
"section_token": {
"description": "Section token for specific sections",
"type": "string"
},
"story_token": {
"description": "Story token for full coverage of a story",
"type": "string"
},
"topic_token": {
"description": "Topic token for specific news topics",
"type": "string"
}
},
"type": "object"
}