Skip to main content
ClaudeWave

5 years of corroborated news events, queryable by agents. Free tier, no key. CLI + MCP + plugin manifests for newsflash.sh

PluginsOfficial Registry0 stars0 forksJavaScriptMITUpdated today
Install as a Claude Code plugin
Method: Clone
Claude Code
/plugin marketplace add zatmonkey/newsflash
/plugin install newsflash
1. Inside Claude Code, add the marketplace and install the plugin with the commands above.
2. Follow any post-install configuration from the README.
3. Restart the session if commands or hooks do not show up immediately.
Use cases

Plugins overview

<p align="center"><img src="icon-400.png" width="96" alt="Newsflash" /></p>

# Newsflash

[![npm](https://img.shields.io/npm/v/newsflash)](https://www.npmjs.com/package/newsflash)
[![smithery badge](https://smithery.ai/badge/newsflash/newsflash)](https://smithery.ai/servers/newsflash/newsflash)

**Five years of corroborated news events, queryable by agents.**
[newsflash.sh](https://newsflash.sh) watches 260+ outlets across geographies and
languages and collapses the noise into a **deduped event graph** — one happening,
every source that corroborated it, a confidence score — live to the minute and
**backfilled five years deep**, so agents can backtest on history and act on the
wire. Served over **MCP**, a **CLI**, and a plain **HTTP API**.

Humans read; agents query. No account needed to start.

```bash
# keyless test drive — 50 requests/day, straight from your shell
npx newsflash events -q "etf" -c crypto -n 5
curl "https://newsflash.sh/api/events?q=fed&category=tradfi&limit=5"
```

## MCP (primary — for agents)

The event graph is served over MCP's Streamable HTTP transport at
`https://newsflash.sh/mcp` — listed in the official MCP registry as
`sh.newsflash/newsflash`. Point any MCP host at it:

```jsonc
// Claude Code / Claude Desktop — remote MCP server
{
  "mcpServers": {
    "newsflash": {
      "type": "http",
      "url": "https://newsflash.sh/mcp",
      "headers": { "Authorization": "Bearer nf_your_key" }   // optional — raises limits
    }
  }
}
```

Claude Code plugin install:

```
/plugin marketplace add zatmonkey/newsflash
/plugin install newsflash@newsflash
```

The endpoint is stateless (each request independent). Tools: `get_events`,
`get_event`, `search_articles`, `list_sources`, `corpus_stats`. Setup guides for
Claude, Cursor, ChatGPT and other hosts: [newsflash.sh/docs.html](https://newsflash.sh/docs.html).

## CLI

A standalone, **zero-dependency** npm package ([`./cli`](cli/), published as
[`newsflash`](https://www.npmjs.com/package/newsflash)):

```bash
npm i -g newsflash

newsflash events -q "etf" -c crypto --from 2026-07-10 -n 5
newsflash events --json -q fed | jq '.[0].sources'   # --json for agents
newsflash sources
newsflash stats
newsflash login you@example.com    # free API key via emailed one-time code
newsflash me                       # tier + today's usage
```

## HTTP API

Base URL `https://newsflash.sh`:

| Method | Route | Purpose |
| --- | --- | --- |
| GET | `/api/events?q=&source=&category=&from=&to=&limit=` | Deduped events |
| GET | `/api/events/:id` | One event + corroborating articles |
| GET | `/api/articles?…` | Raw article search |
| GET | `/api/sources` | Tracked sources + counts |
| GET | `/api/stats` · `/api/health` | Corpus size & freshness |
| POST | `/mcp` | MCP server (Streamable HTTP) — the agent-facing surface |

Categories: `crypto` `tradfi` `business` `tech` `politics` `world` `science`
`health` `energy` `sports`.

## Tiers

| Tier | Auth | Limit | How |
| --- | --- | --- | --- |
| **test** | none | 50 req/day (per IP) · 24h lookback | just call the API or MCP endpoint |
| **free** | API key | 1,000 req/day · 30-day lookback | `newsflash login` — email + one-time code |
| **premium** | subscription | 50,000 req/day · **full 5-year archive** | `newsflash upgrade` — $29/mo |

Pass the key as `Authorization: Bearer nf_…` (or `x-api-key`) — same gate for REST
and `/mcp`. Every response carries `X-RateLimit-Limit` / `X-RateLimit-Remaining` /
`X-Newsflash-Tier`; limits reset at midnight UTC. Keys are shown once and stored
only as hashes.

## How the event graph works

New articles are normalized and matched against recent events using trigram
similarity — **across categories**, so a crypto outlet and a tradfi outlet
reporting the same happening corroborate one event. Above the similarity
threshold → the article attaches to the event and bumps its corroboration;
otherwise it seeds a new event. `confidence = min(1, distinct_sources / 3)` — an
event corroborated by 3+ independent outlets maxes out.

That makes the graph a *signal* instrument: agents can distinguish a
single-outlet rumor (`confidence 0.33`) from a story the whole press corps is
running (`confidence 1.0`, sources listed), and query the full archive to
backtest on history.

## About this repository

This repo holds the open-source (MIT) client surface of Newsflash: the
zero-dependency **CLI** ([`cli/`](cli/)), the **Claude Code plugin** manifests
([`.claude-plugin/`](.claude-plugin/)), and the **MCP registry manifest**
([`server.json`](server.json)). The Newsflash backend is a hosted service
operated at [newsflash.sh](https://newsflash.sh) and is not part of this
repository.

CLI development: `cd cli && npm install && npm run build && node dist/index.js stats`.
No runtime dependencies — Node ≥ 20 built-ins only.

---

[docs](https://newsflash.sh/docs.html) · [sources](https://newsflash.sh/sources.html) ·
[privacy](https://newsflash.sh/privacy.html) · [terms](https://newsflash.sh/terms.html) ·
contact@newsflash.sh

What people ask about newsflash

What is zatmonkey/newsflash?

+

zatmonkey/newsflash is plugins for the Claude AI ecosystem. 5 years of corroborated news events, queryable by agents. Free tier, no key. CLI + MCP + plugin manifests for newsflash.sh It has 0 GitHub stars and was last updated today.

How do I install newsflash?

+

You can install newsflash by cloning the repository (https://github.com/zatmonkey/newsflash) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is zatmonkey/newsflash safe to use?

+

zatmonkey/newsflash has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.

Who maintains zatmonkey/newsflash?

+

zatmonkey/newsflash is maintained by zatmonkey. The last recorded GitHub activity is from today, with 0 open issues.

Are there alternatives to newsflash?

+

Yes. On ClaudeWave you can browse similar plugins at /categories/plugins, sorted by popularity or recent activity.

Deploy newsflash to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: zatmonkey/newsflash
[![Featured on ClaudeWave](https://claudewave.com/api/badge/zatmonkey-newsflash)](https://claudewave.com/repo/zatmonkey-newsflash)
<a href="https://claudewave.com/repo/zatmonkey-newsflash"><img src="https://claudewave.com/api/badge/zatmonkey-newsflash" alt="Featured on ClaudeWave: zatmonkey/newsflash" width="320" height="64" /></a>

More Plugins

newsflash alternatives