Fast News Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Fast News Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
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.
See the Fast News API in action: [the-dispatcher-demo.vercel.app](https://the-dispatcher-demo.vercel.app/)
Every request needs two headers:
| Header | Value |
|---|---|
x-rapidapi-key | Your API key |
x-rapidapi-host | fast-news-with-previews.p.rapidapi.com |
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"
]
}
}
}Themcp-remotepackage is installed automatically bynpx. You don't need to install anything manually.
See the per-agent setup instructions below for client-specific details.
<details> <summary><strong>Alternative: npm package (secondary option)</strong></summary>
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"
}
}
}
}</details>
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.
Find your client below and expand it for setup steps.
<details> <summary><strong>Claude Code</strong> (<a href="https://code.claude.com/docs/en/mcp">docs</a>)</summary>
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.
</details>
<details> <summary><strong>Claude Desktop</strong> (<a href="https://modelcontextprotocol.io/docs/develop/connect-local-servers">docs</a>)</summary>
claude_desktop_config.json</details>
<details> <summary><strong>Cursor</strong> (<a href="https://cursor.com/docs/mcp">docs</a>)</summary>
YOUR-API-KEY with your key</details>
<details> <summary><strong>VS Code Copilot</strong> (<a href="https://code.visualstudio.com/docs/copilot/customization/mcp-servers">docs</a>)</summary>
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"
]
}
}
}</details>
<details> <summary><strong>Windsurf</strong> (<a href="https://docs.windsurf.com/windsurf/cascade/mcp">docs</a>)</summary>
Add the Quick Start config to your Windsurf MCP config file (~/.codeium/windsurf/mcp_config.json).
</details>
<details> <summary><strong>Cline</strong> (<a href="https://docs.cline.bot/mcp/mcp-overview">docs</a>)</summary>
</details>
<details> <summary><strong>Continue</strong> (<a href="https://docs.continue.dev/customize/mcp-tools">docs</a>)</summary>
Add the Quick Start config to your ~/.continue/config.json under the mcpServers key.
</details>
<details> <summary><strong>OpenCode</strong> (<a href="https://opencode.ai/docs/mcp-servers">docs</a>)</summary>
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"
}
}
}
}</details>
<details> <summary><strong>Codex CLI</strong> (<a href="https://developers.openai.com/codex/mcp">docs</a>)</summary>
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"</details>
Once connected, try these prompts in your AI agent:
The agent will use the MCP server to call the appropriate endpoint and return formatted results.
For full endpoint documentation, parameters, response formats, and code examples:
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.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.