{
"mcpServers": {
"kotlin-news-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 263 days ago. 8 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
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!