G
Google News
Search Google News for headlines.
·No reviews yet
Share:
About
Auto-generated
Google News is a Model Context Protocol server in the Search & Web category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
web_search
Search the web and return top results
fetch_url
Fetch and return the contents of a URL
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Google News.
- What is the primary function of the Google News MCP?
- This MCP allows users to search Google News for headlines. It provides a programmatic interface to access current news articles and information directly from Google News.
- How can I install the Google News MCP in a client application?
- Installation typically involves cloning the repository from https://github.com/ChanMeng666/server-google-news and following specific instructions provided by your MCP client for adding local servers. The transport mechanism is stdio.
- Does this Google News MCP require an API key or other credentials?
- No, the Google News MCP does not require an API key, OAuth, or other credentials for its operation. It is configured with a 'none' authentication type.
- What are the common use cases for the Google News MCP?
- Typical use cases include integrating news search capabilities into custom applications, aggregating headlines for specific topics, or developing automated news monitoring tools.
- Is there any cost associated with using the Google News MCP?
- This MCP is provided by the Community and is open source, implying no direct licensing costs. However, standard data usage fees from your internet service provider may apply.
- What is a known limitation of the Google News MCP?
- A limitation is the absence of detailed documentation regarding its exposed tools and capabilities. Users may need to inspect the source code to understand its full functionality.
Install Google News
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"google-news": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-google-news"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"google-news": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-google-news"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"google-news": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-google-news"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.