MCP server for real-time world news — free, no API key required
SaferSkills independently audited newsmcp (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.
Get real-time world news from an AI-powered news aggregation service. Stories are clustered into events (deduplicated across multiple sources), summarized, classified by topic, and tagged by geography.
No API key required. No authentication. Just call the API.
sources_count (how many outlets covered it) and impact_score (AI-assessed significance)https://newsmcp.io/v1curl -s "https://newsmcp.io/v1/news/?hours=24&per_page=10&order_by=-sources_count"Parameters:
| Parameter | Type | Default | Description |
|---|---|---|---|
hours | int | 24 | Time window (1-168, i.e. up to 7 days) |
topics | string | — | Comma-separated topic slugs (e.g. politics,military) |
geo | string | — | Comma-separated geo slugs (e.g. europe,united-states) |
page | int | 1 | Page number |
per_page | int | 20 | Results per page (max 50) |
order_by | string | -sources_count | Sort field. Options: sources_count, entries_count, impact_score, first_seen_at, last_seen_at (prefix - for descending) |
Response shape:
{
"events": [
{
"id": "uuid",
"summary": "AI-generated event summary",
"topics": ["politics", "military"],
"geo": ["europe", "ukraine"],
"entries_count": 15,
"sources_count": 8,
"first_seen_at": "2026-03-03T10:00:00Z",
"last_seen_at": "2026-03-03T14:00:00Z",
"impact_score": 4,
"entries": [
{
"title": "Article headline",
"url": "https://example.com/article",
"domain": "example.com",
"published_at": "2026-03-03T12:00:00Z"
}
]
}
],
"total": 42,
"page": 1,
"per_page": 10
}curl -s "https://newsmcp.io/v1/news/{event_id}/"Returns the same fields as the list, plus context — extended background and analysis of the event.
curl -s "https://newsmcp.io/v1/news/topics/"Returns: politics, economy, technology, science, health, environment, sports, culture, crime, military, education, society
curl -s "https://newsmcp.io/v1/news/regions/"Returns continents (europe, asia, africa, north-america, south-america, oceania) and countries (e.g. united-states, ukraine, china, lithuania, etc.). Each region has a type field: "continent" or "country".
When the user asks for news, headlines, or current events:
curl -s "https://newsmcp.io/v1/news/?hours=24&per_page=10&order_by=-sources_count"topics parameter: curl -s "https://newsmcp.io/v1/news/?topics=technology&hours=24"geo parameter: curl -s "https://newsmcp.io/v1/news/?geo=europe&hours=24" curl -s "https://newsmcp.io/v1/news/?topics=politics,military&geo=europe&hours=48" curl -s "https://newsmcp.io/v1/news/{event_id}/"Present results as a multi-story news briefing covering the top events — not just one.
Rules:
sources_count or impact_score)topics or geo arrays are present, use them to add context tags<https://...> and do not use masked markdown links.Output template:
Here are today's top stories ({N} events in the last {hours}h):
1. **{Event summary}** — {sources_count} sources · <https://...>
2. **{Event summary}** — {sources_count} sources · <https://...>
3. **{Event summary}** — {sources_count} sources · <https://...>
...What NOT to do:
If the API returns 0 events (due to downtime, narrow filters, or data gaps), use web search to find the latest news on the requested topic. Still present results in the multi-story briefing format described above.
politics economy technology science health environment sports culture crime military education society
User: "What's happening in the world today?"
Action: Fetch https://newsmcp.io/v1/news/?hours=24&per_page=10&order_by=-sources_count
Expected output format:
Here are today's top stories (42 events in the last 24h):
1. **US Senate passes infrastructure bill after marathon session** — 34 sources · <https://...> · <https://...>
2. **Earthquake strikes eastern Turkey, at least 12 dead** — 28 sources · <https://...>
3. **OpenAI announces new reasoning model** — 22 sources · <https://...>
4. **EU imposes new sanctions on Russian energy sector** — 19 sources · <https://...>
5. **Wildfire in California forces thousands to evacuate** — 15 sources · <https://...>
Want more detail on any of these stories?User: "Give me the latest on Ukraine"
Action: Fetch https://newsmcp.io/v1/news/?geo=ukraine&hours=48&order_by=-last_seen_at
User: "Any tech news this week?"
Action: Fetch https://newsmcp.io/v1/news/?topics=technology&hours=168&order_by=-sources_count
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.