Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"news-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Go-based Model Context Protocol (MCP) server for fetching the latest news articles using the GDELT API.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in communication / search
Web and local search using Brave Search API
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
Production ready MCP server with real-time search, extract, map & crawl.
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
MCP Security Weekly
Get CVE alerts and security updates for News Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Go-based Model Context Protocol (MCP) server for fetching the latest news articles using the GDELT API.
news-mcp-server is a lightweight MCP server written in Go that exposes a tool for retrieving news articles based on a query string. It leverages the GDELT API to provide up-to-date news data and is designed for easy integration with MCP clients.
Clone the repository and install dependencies:
git clone https://github.com/laplus-x/news-mcp-server.git
cd news-mcp-server
go mod tidy
Copy .env.example to .env and set your desired host and port:
HOST=localhost
PORT=8080
Start the MCP server:
go run main.go
The server will listen for MCP requests at http://<HOST>:<PORT>/mcp.
getNewsFetches the latest news articles based on a query string.
Endpoint: /mcp
Method: POST (MCP protocol)
Arguments:
query (string): The search keyword.Response:
Returns a JSON object containing the first matching news article.
Example response:
{
"url": "...",
"title": "...",
"seendate": "...",
"domain": "...",
"language": "...",
"sourcecountry": "..."
}
MIT