NewsAPI MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@NewsAPI MCP ServerGet top headlines in technology"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
NewsAPI MCP Server
Note this service was 100% vibecoded using Copilot Agent!
A TypeScript-based Model Context Protocol (MCP) server for integrating with NewsAPI, enabling seamless access to global news articles, headlines, and sources through MCP-compatible applications.
Features
This MCP server provides three main tools for interacting with NewsAPI:
1. search_articles
Search for news articles by keyword or phrase with options to:
Filter by language
Sort results (by relevancy, popularity, or publication date)
Control pagination
2. get_top_headlines
Fetch top headlines from specific countries or categories:
Filter by country (using ISO country codes)
Filter by category (business, entertainment, general, health, science, sports, technology)
Customizable page size
3. get_sources
Discover available news sources with optional filtering by:
Category
Country
Related MCP server: NewsDigest MCP
Setup
Prerequisites
Node.js 16 or higher
npm (comes with Node.js)
A NewsAPI API key (get one free at https://newsapi.org)
Installation
Clone or download this project
Navigate to the project directory:
cd newsapi-mcpInstall dependencies:
npm installBuild the TypeScript code:
npm run build
Configuration
Set your NewsAPI key as an environment variable:
On Windows:
$env:NEWS_API_KEY="your-newsapi-key-here"On macOS/Linux:
export NEWS_API_KEY="your-newsapi-key-here"Or create a
.envfile in the project root (if using dotenv):NEWS_API_KEY=your-newsapi-key-here
Usage
With Claude Desktop
Update your Claude Desktop configuration file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonAdd the NewsAPI server configuration:
{ "mcpServers": { "newsapi": { "command": "node", "args": ["/absolute/path/to/newsapi-mcp/build/index.js"], "env": { "NEWS_API_KEY": "your-newsapi-key" } } } }Restart Claude Desktop
With MCP Inspector
Test the server using the MCP Inspector:
npx @modelcontextprotocol/inspector node ./build/index.jsMake sure NEWS_API_KEY is set before running.
Tool Details
search_articles
Search for news articles by keyword.
Parameters:
q(required): Search keywords or phrasesortBy(optional): Sort order -relevancy,popularity, orpublishedAt(default:publishedAt)language(optional): Language code like 'en', 'es', 'fr' (default: 'en')pageSize(optional): Number of articles to return, 1-100 (default: 10)
Example:
"Find articles about artificial intelligence sorted by popularity"get_top_headlines
Get top headlines from a specific country or category.
Parameters:
country(optional): Two-letter ISO country code like 'us', 'gb', 'de' (default: 'us')category(optional): One of: business, entertainment, general, health, science, sports, technologypageSize(optional): Number of articles to return, 1-100 (default: 10)
Example:
"Get top technology headlines from the UK"get_sources
Get available news sources with optional filtering.
Parameters:
category(optional): Filter by categorycountry(optional): Filter by country code
Example:
"Show me all technology news sources"Development
Build
npm run buildRun in development mode
npm run devProject Structure
newsapi-mcp/
├── src/
│ └── index.ts # Main server implementation
├── build/ # Compiled JavaScript (after build)
├── .vscode/
│ └── mcp.json # MCP configuration
├── package.json # Project dependencies
├── tsconfig.json # TypeScript configuration
└── README.md # This fileEnvironment Variables
NEWS_API_KEY(required): Your NewsAPI API key from https://newsapi.org
API Documentation
For more information about the NewsAPI endpoints and parameters, visit: https://newsapi.org/docs
Troubleshooting
"NEWS_API_KEY environment variable is not set"
Make sure you have set the NEWS_API_KEY environment variable with a valid NewsAPI key.
"Error fetching headlines"
Check that:
Your API key is valid
Your API key has not exceeded its usage limit
The parameters you're using are valid (valid country/category codes)
Connection refused
Ensure the server has been built:
npm run buildAnd make sure you're using the correct absolute path in your configuration.
License
MIT
Support
For issues with the MCP server, file an issue in the repository. For questions about NewsAPI, visit: https://newsapi.org/docs
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jonnadul/newsapi-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server