Loading...

This MCP server provides Google News search capabilities via SerpAPI, categorizing results and supporting multiple languages/regions.
Boost this tool
Subscribe to listing upgrades or segmented pushes.
This MCP server provides Google News search capabilities via SerpAPI, categorizing results and supporting multiple languages/regions.
This server is relatively safe for use as it primarily provides read-only access to Google News data. The main risk lies in the reliance on the SerpAPI and the secure management of the API key. Ensure the API key is stored securely and monitor API usage to prevent unauthorized access.
Performance is largely dependent on the SerpAPI's response times. Caching mechanisms can be implemented to improve performance for frequently accessed queries.
Cost is primarily determined by SerpAPI usage. Free tier offers limited searches; paid plans are required for higher usage.
npm install
```OPENAI_API_KEYgoogle_news_searchSearches Google News for articles based on a query and returns categorized results.
Read-only operation; retrieves and categorizes news data without modifying any system settings or data.
API Key
cloud
This server is relatively safe for use as it primarily provides read-only access to Google News data. The main risk lies in the reliance on the SerpAPI and the secure management of the API key. Ensure the API key is stored securely and monitor API usage to prevent unauthorized access.
This server is primarily designed for read-only access to news data, so autonomous agents can safely use it to gather information without risking system modifications.
Production Tip
Monitor SerpAPI usage to avoid exceeding rate limits and incurring unexpected costs.
SerpAPI is a third-party API that provides access to search engine results, including Google News. It's needed because directly scraping Google News is unreliable and against their terms of service.
You can obtain a SerpAPI key by creating an account on the SerpAPI website and subscribing to a plan that meets your usage needs.
The free SerpAPI plan typically has a limited number of searches per month. Check the SerpAPI website for the most up-to-date details.
The server supports multiple languages and regions through configurable language and country codes. Check the documentation for a complete list.
News results are automatically categorized into topics like AI & Technology, Business, Science & Research, and Healthcare based on keywords and content analysis.
If you exceed the SerpAPI rate limit, the server will return an error. You should implement retry logic with exponential backoff to handle rate limiting gracefully.
Yes, you can filter news results by publication using the `publication_token` parameter.