Fast News MCP
Provides tools for real-time news search, trending headlines, topic categories, and local news via the Fast News API hosted on RapidAPI.
Fast News MCP Server
Real-time news search, trending headlines, topic categories, and local news — exposed as MCP tools so your AI agent can query news in plain language. No HTTP boilerplate required.
The server is hosted by RapidAPI and connects via mcp-remote. All you need is a RapidAPI subscription and your API key.
Demo
See the Fast News API in action: the-dispatcher-demo.vercel.app
Related MCP server: gnews-mcp-server
Get an API Key
Subscribe on RapidAPI (free tier available)
Your API key appears on the Endpoints tab
Every request needs two headers:
Header | Value |
| Your API key |
|
|
Quick Start
Prerequisites: Node.js (for npx) and a free RapidAPI subscription.
Add the following to your AI agent's MCP server configuration. Replace YOUR-API-KEY with your RapidAPI key.
{
"mcpServers": {
"fast-news": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.rapidapi.com",
"--header",
"x-api-host: fast-news-with-previews.p.rapidapi.com",
"--header",
"x-api-key: YOUR-API-KEY"
]
}
}
}The
mcp-remotepackage is installed automatically bynpx. You don't need to install anything manually.
See the per-agent setup instructions below for client-specific details.
Prefer the Quick Start above. Use this only if your setup specifically benefits from a single published package.
This repository is also published as the npm package @wllrdev/fast-news-mcp. It's a thin wrapper around mcp-remote that reads your key from the RAPIDAPI_KEY environment variable instead of the command line:
{
"mcpServers": {
"fast-news": {
"command": "npx",
"args": ["-y", "@wllrdev/fast-news-mcp"],
"env": {
"RAPIDAPI_KEY": "YOUR-API-KEY"
}
}
}
}Available Tools
Once connected, your AI agent has access to these tools:
Tool | Description |
search_news | Search any topic with filters for language, country, and timeframe. Supports source diversity and built-in deduplication. |
advanced_search | Like search_news but with post-fetch controls — include/exclude specific sources, require thumbnails, and change sort order. |
trending_headlines | Top headlines auto-translated into 40+ languages. Optionally filter by country and timeframe. |
topic_categories | Browse 11 predefined categories: world, national, business, technology, entertainment, sports, science, health, politics, economy, environment. Combine two categories in one request. |
local_news | News about a specific city, region, or area. |
For full parameter documentation, see the API reference.
Setup for Your AI Agent
Find your client below and expand it for setup steps.
Option A — CLI command:
claude mcp add fast-news -- npx mcp-remote https://mcp.rapidapi.com --header "x-api-host: fast-news-with-previews.p.rapidapi.com" --header "x-api-key: YOUR-API-KEY"Add --scope user to make it available globally across all projects.
Option B — Manual config:
Add the Quick Start config to your Claude Code MCP settings.
Open Claude Desktop settings
Navigate to Developer > Edit Config
Paste the Quick Start config into
claude_desktop_config.jsonRestart Claude Desktop
Open Cursor Settings > MCP > New MCP Server
Paste the Quick Start config
Replace
YOUR-API-KEYwith your keyEnable the server
Add the following to your .vscode/mcp.json:
{
"servers": {
"fast-news": {
"type": "stdio",
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.rapidapi.com",
"--header",
"x-api-host: fast-news-with-previews.p.rapidapi.com",
"--header",
"x-api-key: YOUR-API-KEY"
]
}
}
}Add the Quick Start config to your Windsurf MCP config file (~/.codeium/windsurf/mcp_config.json).
Open Cline settings
Go to MCP > Add New MCP Server
Select Local and paste the Quick Start config
Add the Quick Start config to your ~/.continue/config.json under the mcpServers key.
Add the following to your opencode.json:
{
"mcp": {
"fast-news": {
"type": "remote",
"url": "https://mcp.rapidapi.com",
"headers": {
"x-api-host": "fast-news-with-previews.p.rapidapi.com",
"x-api-key": "YOUR-API-KEY"
}
}
}
}codex mcp add fast-news -- npx mcp-remote https://mcp.rapidapi.com --header "x-api-host: fast-news-with-previews.p.rapidapi.com" --header "x-api-key: YOUR-API-KEY"Usage Examples
Once connected, try these prompts in your AI agent:
"What are the trending headlines right now?"
"Search for news about artificial intelligence"
"Find local news about Tokyo"
"Show me the latest technology news from the past week"
"Search for climate news from BBC and Reuters only, sorted by newest first"
"Get trending headlines in German"
"Find sports and business news combined"
"Show me health news with thumbnails only from the last 7 days"
The agent will use the MCP server to call the appropriate endpoint and return formatted results.
API Documentation
For full endpoint documentation, parameters, response formats, and code examples:
Overview: docs.marvelousapi.com/apis/fastnews
Endpoints: docs.marvelousapi.com/apis/fastnews/docs/endpoints/news
Error Handling: docs.marvelousapi.com/apis/fastnews/docs/error-handling
Key Features
Source diversity — no single domain dominates your feed (max 25% per domain)
Built-in deduplication — near-identical articles are collapsed automatically
40+ languages — trending and topic searches auto-translate into local queries
Clean previews — up to 250-character excerpts with thumbnail URLs
Timeframe filters — last hour, 24h, 7 days, 30 days
Links
License & API Terms
The configuration and documentation in this repository are MIT licensed. The Fast News API itself is a commercial service hosted on RapidAPI — usage is subject to the RapidAPI Terms of Service and your subscription plan. The MIT license does not grant access to the API.
License
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.
Related MCP Servers
- -license-quality-maintenanceA remote MCP server that enables searching for news articles on specific topics through the Tavily API without requiring authentication.Last updated
- Flicense-qualityFmaintenanceMCP server providing access to the GNews API for fetching news articles and headlines. Supports search and top headlines with advanced filtering by language, country, category, and date.Last updated1
- AlicenseAqualityAmaintenanceMCP server for global news monitoring, media analysis and sentiment tracking via WorldNewsAPI — full-text search across 150+ countries, German/English sentiment analysis, top headlines, GL briefings, newspaper front pages and geo-search. API key required.Last updated15MIT
- Flicense-qualityCmaintenanceAn AI-powered news aggregator MCP server that fetches live news from multiple sources, provides AI summaries via Claude, and performs sentiment analysis and trending topic detection.Last updated
Related MCP Connectors
World News Feeds MCP.
US News Feeds MCP.
An MCP server for deep research or task groups
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/wllrdev/Fast-News-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server