# io.github.pranciskus/newsmcp (npm · @newsmcp/server)

Real-time world news for AI agents. 50+ regions, topic filtering. Free, no API key.

- Trust score: 79/100 (medium)
- Change this week: +54
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@newsmcp/server`: 79/100 (this document), [markdown](https://verifymcp.io/servers/pranciskus-newsmcp/newsmcp-server.md), [page](https://verifymcp.io/servers/pranciskus-newsmcp/newsmcp-server)

## Channel facts

- Registry: `npm`
- Package: `@newsmcp/server`
- Version: `1.1.1`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 97/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to pranciskus/newsmcp).
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 150 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 434 tokens (~108/item across 4 items; 4 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add pranciskus-newsmcp -- npx -y @newsmcp/server
```

### Codex

```bash
codex mcp add pranciskus-newsmcp -- npx -y @newsmcp/server
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "pranciskus-newsmcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@newsmcp/server"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add pranciskus-newsmcp --command npx --arg -y --arg @newsmcp/server
```

### Hermes

```yaml
mcp_servers:
  pranciskus-newsmcp:
    command: "npx"
    args: ["-y", "@newsmcp/server"]
```

### Other

```json
{
  "mcpServers": {
    "pranciskus-newsmcp": {
      "command": "npx",
      "args": [
        "-y",
        "@newsmcp/server"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 79, +53)

- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Provenance: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- [security] The attested source repository moved: pranciskus/newsmcp
- [functional regression] Security disclosure: fail → unverified
- [functional regression] Capabilities: pass → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional improvement] Stability: unverified → 0.20
- [functional improvement] Schema quality: unverified → excellent
- [functional] Licence: MIT

### 2026-08-01 (score 26, +5)

- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] MCP protocol: unverified → pass

### 2026-07-31 (score 21, −25)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-28 (score 46, +21)

- [functional regression] Dependency health: partial → unverified
- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Schema quality: pass
- [functional] First check of Tool coverage: 100
- [functional] First check of Schema quality: unverified
- [functional] First check of Schema quality: fail

### 2026-07-27 (score 25)

First indexed and scored.

## MCP tools (4)

### `get_news` (~270 tokens)

Get top news events happening in the world right now. Returns AI-clustered, deduplicated news stories ranked by importance. Present results as a multi-story news briefing — cover the top events, not just one. Each event should be 1-2 lines with its summary and 1-2 source links. Prioritize suppressing rich link cards/previews over pretty link labels. For Discord-style clients, output source URLs directly as '<https://...>' and do not use masked markdown links. Never emit raw standalone URLs outside no-preview wrappers. Only deep-dive into a specific event if the user asks for detail.

Input parameters:

- `geo` (string): Comma-separated geographic slugs (e.g. 'europe,lithuania'). Use get_regions to see available regions.
- `hours` (integer): Time window in hours (1-168). Default: 24.
- `order_by` (string): Sort order. Default: -sources_count (most covered first).
- `page` (integer): Page number. Default: 1.
- `per_page` (integer): Results per page (1-50). Default: 20.
- `topics` (string): Comma-separated topic slugs (e.g. 'politics,technology'). Use get_topics to see available topics.

### `get_news_detail` (~99 tokens)

Get full details about a specific news event including context and all source articles. Use an event ID from get_news results. Include source article URLs so the user can read original reporting, but prioritize suppressing rich link cards/previews. For Discord-style clients, output source URLs directly as '<https://...>' and avoid masked markdown links. Never emit raw standalone URLs outside no-preview wrappers.

Input parameters:

- `event_id` (string, required): UUID of the news event.

### `get_topics` (~34 tokens)

List all available news topic categories (politics, technology, health, etc.). Use these slugs to filter get_news results.

### `get_regions` (~31 tokens)

List all available geographic regions (continents and countries). Use these slugs to filter get_news results by location.

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/pranciskus-newsmcp/newsmcp-server#diagnostics

## Score history

- 2026-08-03: 79
- 2026-08-02: 79
- 2026-08-01: 26
- 2026-07-31: 21
- 2026-07-30: 46
- 2026-07-28: 46
- 2026-07-27: 25

## Links

- npm package: https://www.npmjs.com/package/@newsmcp/server
- Socket report: https://socket.dev/npm/package/@newsmcp/server
- Repository: https://github.com/pranciskus/newsmcp
- Changelog RSS feed: https://verifymcp.io/servers/pranciskus-newsmcp/newsmcp-server/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/pranciskus-newsmcp/newsmcp-server/changelog.json
- HTML version of this page: https://verifymcp.io/servers/pranciskus-newsmcp/newsmcp-server
