kcjonnyc/news_mcp
If you are the rightful owner of news_mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The News API MCP Server provides access to news content via the NewsAPI.org service, enabling AI assistants to search articles, get top headlines, and browse news sources.
News API MCP Server
A Model Context Protocol (MCP) server that provides access to news content through the NewsAPI.org service. This server enables AI assistants to search articles, get top headlines, and browse news sources.
Setup
-
Install dependencies:
npm install
-
Get a NewsAPI key:
- Sign up at NewsAPI.org
- Get your free API key (up to 100 requests/day)
-
Configure environment: Create a
.env
file in the project root:NEWS_API_KEY=your_api_key_here
-
Build the project:
npm run build
MCP Configuration
Add to your MCP settings (e.g., ~/.cursor/mcp.json
):
{
"mcpServers": {
"news-mcp": {
"command": "npm",
"args": ["run", "start", "--prefix", "/path/to/news_mcp"]
}
}
}
Available Tools
searchArticles
- Search through millions of articles from news sources worldwide.getTopHeadlines
- Get breaking news headlines and top stories.getSources
- Discover and filter available news sources.
Development
Development mode (with auto-reload):
npm run dev
Build for production:
npm run build
npm start
Test NewsAPI integration:
npm run test-api
License
MIT