GNews MCP Server
Enables searching news articles and fetching top headlines via GNews API with filtering options.
README
GNews MCP Server
A Model Context Protocol (MCP) server for fetching news articles and headlines using the GNews API.
Features
- Search News: Search for news articles using keywords with various filtering options
- Top Headlines: Get current trending headlines based on Google News ranking
- Comprehensive Filtering: Filter by language, country, date range, category, and more
- Schema Validation: Full input/output validation using JSON Schema
- Error Handling: Robust error handling and meaningful error messages
Installation
Prerequisites
- Python 3.11 or higher
- UV package manager
- GNews API key from gnews.io
Install from Git
uvx --from git+https://github.com/yourusername/gnews-mcp-server gnews-server
Local Development
-
Clone the repository:
git clone https://github.com/yourusername/gnews-mcp-server.git cd gnews-mcp-server -
Install dependencies:
uv sync -
Set up environment variables:
# Create .env file echo "GNEWS_KEY=your_gnews_api_key_here" > .env -
Run tests:
uv run python test_server.py
Configuration
Environment Variables
GNEWS_KEY(required): Your GNews API key from gnews.ioDEBUG(optional): Set totruefor debug logging
Getting a GNews API Key
- Visit gnews.io
- Sign up for a free account
- Get your API key from the dashboard
- Set it as the
GNEWS_KEYenvironment variable
Available Tools
1. search_news
Search for news articles using keywords with various filtering options.
Parameters:
query(required): Search keywords (supports logical operators AND, OR, NOT)language: 2-letter language code (default: "en") - supported values: ar, zh, nl, en, fr, de, el, hi, it, ja, ml, mr, no, pt, ro, ru, es, sv, ta, te, ukcountry: 2-letter country code - supported values: au, br, ca, cn, eg, fr, de, gr, hk, in, ie, it, jp, nl, no, pk, pe, ph, pt, ro, ru, sg, se, ch, tw, ua, gb, usin: Search in "title", "description", "content" (default: "title,description")sortby: Sort by "publishedAt" or "relevance" (default: "publishedAt")start_date: Start date in YYYY-MM-DD formatend_date: End date in YYYY-MM-DD format
Returns exactly 10 articles.
Example:
{
"query": "artificial intelligence",
"language": "en",
"country": "us",
"sortby": "relevance",
"start_date": "2024-01-01",
"end_date": "2024-01-31"
}
2. get_top_headlines
Get current trending headlines based on Google News ranking.
Parameters:
category: Category ("general", "world", "nation", "business", "technology", "entertainment", "sports", "science", "health") - default: "general"language: 2-letter language code (default: "en") - supported values: ar, zh, nl, en, fr, de, el, hi, it, ja, ml, mr, no, pt, ro, ru, es, sv, ta, te, ukcountry: 2-letter country code - supported values: au, br, ca, cn, eg, fr, de, gr, hk, in, ie, it, jp, nl, no, pk, pe, ph, pt, ro, ru, sg, se, ch, tw, ua, gb, usquery: Search keywords within headlinesstart_date: Start date in YYYY-MM-DD formatend_date: End date in YYYY-MM-DD format
Returns exactly 10 articles.
Example:
{
"category": "technology",
"language": "en",
"country": "us"
}
MCP Client Configuration
Claude Desktop
Add to your Claude Desktop configuration file:
{
"mcpServers": {
"gnews": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/yourusername/gnews-mcp-server",
"gnews-server"
],
"env": {
"GNEWS_KEY": "your_gnews_api_key_here"
}
}
}
}
Other MCP Clients
The server communicates using the standard MCP protocol over stdio. Refer to your MCP client's documentation for configuration details.
Query Syntax
The GNews API supports advanced query syntax for the query parameter:
Phrase Search
"Apple iPhone"- Exact phrase matching
Logical Operators
Apple AND iPhone- Both terms must be presentApple OR Microsoft- Either term must be presentApple NOT iPhone- First term without second term
Complex Queries
(Apple AND iPhone) OR (Google AND Pixel)- Complex logical combinations"machine learning" AND NOT "deep learning"- Phrase with exclusion
Supported Languages
| Language | Code | Language | Code |
|---|---|---|---|
| Arabic | ar | Italian | it |
| Chinese | zh | Japanese | ja |
| Dutch | nl | Norwegian | no |
| English | en | Portuguese | pt |
| French | fr | Russian | ru |
| German | de | Spanish | es |
| Greek | el | Swedish | sv |
| Hindi | hi | Ukrainian | uk |
Supported Countries
| Country | Code | Country | Code |
|---|---|---|---|
| Australia | au | Japan | jp |
| Brazil | br | Netherlands | nl |
| Canada | ca | Norway | no |
| China | cn | Pakistan | pk |
| Egypt | eg | Portugal | pt |
| France | fr | Singapore | sg |
| Germany | de | Spain | es |
| India | in | Sweden | se |
| Italy | it | United Kingdom | gb |
| United States | us | (and more...) |
Testing
The server includes comprehensive tests:
# Run all tests
uv run python test_server.py
# Test features:
# - Schema validation
# - Input/output validation
# - Error handling
# - Tool functionality
Development
Project Structure
gnews-mcp-server/
├── gnews_mcp_server/
│ ├── __init__.py
│ ├── __main__.py # Entry point
│ ├── server.py # MCP server implementation
│ ├── handlers.py # Tool implementations
│ └── tools.json # Tool schemas
├── test_cases.json # Test definitions
├── test_server.py # Test framework
├── pyproject.toml # Project configuration
└── README.md
MCP Schema Design Rules
This project follows specific patterns for MCP JSON schema design:
Optional Parameters Pattern
✅ DO - Use nullable union types for optional parameters:
{
"country": {
"type": ["string", "null"],
"description": "2-letter country code (optional)",
"enum": ["us", "gb", "ca", ...]
}
}
❌ DON'T - Use default: null with non-nullable types:
{
"country": {
"type": "string",
"default": null // Type inconsistency!
}
}
Parameters with Explicit Defaults
✅ DO - Keep meaningful defaults for parameters:
{
"language": {
"type": "string",
"enum": ["en", "fr", "de", ...],
"default": "en"
}
}
Required Array Management
- Include in
required: Only truly mandatory parameters - Exclude from
required: All optional/nullable parameters - Schema validation: Catches invalid inputs before handlers
Handler Signature Matching
Match your handler function signatures to the schema:
async def search_news(query: str, # required
language: str = "en", # has default
country: str = None, # nullable optional
**kwargs) -> dict:
Adding New Features
- Update tool schemas in
gnews_mcp_server/tools.json - Implement tool functions in
gnews_mcp_server/handlers.py - Add tests to
test_cases.json - Run tests:
uv run python test_server.py
Error Handling
The server provides comprehensive error handling:
- Validation Errors: Invalid parameters are caught and reported
- API Errors: GNews API errors are properly formatted
- Network Errors: Connection issues are handled gracefully
- Schema Validation: Input/output validation ensures data integrity
Rate Limits
GNews API rate limits depend on your subscription plan:
- Free: 100 requests per day
- Paid Plans: Higher limits available
The server will return appropriate error messages when rate limits are exceeded.
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests for new functionality
- Ensure all tests pass
- Submit a pull request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Support
Schema Validation Benefits
This server provides enhanced schema validation features:
- Input Validation: Parameters validated against JSON Schema before processing
- Output Validation: Responses validated to ensure data integrity
- Type Safety: Nullable types properly handled with union types
["string", "null"] - Error Prevention: Invalid enum values, date formats, and required fields caught early
- Consistent Behavior: Predictable parameter handling across all tools
Changelog
v0.1.0
- Initial release
- Search news functionality
- Top headlines functionality
- Comprehensive schema validation with nullable union types
- Enhanced error handling and input validation
- Full test suite with 100% coverage
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.