Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"news-mpc-server": {
"url": "http://localhost:3001/sse"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Ktor-based server written in Kotlin implementing the Model Context Protocol (MCP) with tools for fetching news headlines and searching news articles using the NewsAPI.
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.
Click any tool to inspect its schema.
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 entertainment
The official MCP Server for the Mux API
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to control Unreal E…
Unity MCP Server — 268 tools for AI-assisted game development. Connect Claude, Cursor, or any MCP client to Unity Editor & Unity Hub. Scene management, GameObjects, components, builds, profiling, Shader Graph, Amplify, terrain, physics, NavMesh, animation, MPPM multiplayer & more. Free & open source by AnkleBreaker Studio.
A Model Context Protocol (MCP) server that gives Claude direct control over Strudel.cc for AI-assisted music generation and live coding.
MCP Security Weekly
Get CVE alerts and security updates for Kotlin 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 Ktor-based server written in Kotlin implementing the Model Context Protocol (MCP) with tools for fetching news headlines and searching news articles using the NewsAPI.
NEWS_API_KEY environment variable.git clone https://github.com/nishantpardamwar/kotlin-news-mcp-server.git
cd mcpserver
Set the NEWS_API_KEY environment variable:
IntelliJ IDEA:
NEWS_API_KEY=your_api_key_here
Hit Run 'Application.kt' (▶) on your AndroidStudio/IntelliJ IDE
The server will start on http://localhost:3001.
The server exposes two MCP tools:
get-top-headlinecategory (string): One of business, entertainment, general, health, science, sports, technology.search-news-queryquery (string): Keywords or phrases to search for.fromDate (string, optional): Oldest article date (ISO 8601).toDate (string, optional): Newest article date (ISO 8601).sortBy (string, optional): relevancy, popularity, or publishedAt.To use this MCP server with Cursor, you need to configure Cursor to connect to your local MCP server instance. Follow these steps:
{
"mcpServers": {
"news-mpc-server": {
"url": "http://localhost:3001/sse"
}
}
}
You should now be able to use the tools provided by this server (such as get-top-headline and search-news-query) directly within Cursor's MCP tool interface.
src/main/kotlin/Application.kt: Main entry point, server setup.src/main/kotlin/NewsTool.kt: Tool implementations for news fetching/search.build.gradle.kts: Build configuration.This project is licensed under the MIT License - see the LICENSE file for details.
⭐ Star this repository if you found it helpful!