News from 17 outlets with left/center/right bias tags and one-sided blindspot detection
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
What is the other side reading?
Sidewise pulls 16 feeds from 14 newsrooms across the spectrum, tags each left, center or right, and flags the blindspots: stories only one side is covering. Free. No account, no key, no limit.
Two feeds from one newsroom count as one voice. A publisher can't run an opinion section next to its main feed and call that two sources.
Five ways in: a web reader, native iPhone, iPad and Mac apps, a JSON API, an MCP server, and a terminal client (swift build && ./.build/debug/sidewise-tui 5 β see tui/).
SwiftUI, one codebase for iOS and macOS, in ios/. It reads the same public API. No account,
no tracking. Saved stories and the feed cache stay on the device.
| Tool | Params | Returns |
|---|---|---|
get_news | view, outlet, bias, developing, q, limit | Current headlines, flat or clustered by story |
get_blindspots | limit | Only stories covered by a single political side |
compare_coverage | q (required), limit | One story as each side headlines it, plus the words unique to each |
get_feed_health | : | Which feeds answered, and whether the data served is complete or a stale fallback |
Call get_feed_health before you trust an empty or one-sided result. An outage and a quiet
news day look the same otherwise.
Stateless streamable HTTP, no auth. Works with any MCP client: Claude Desktop, Claude Code, Cursor.
GET https://sidewise.heyitsmejosh.com/api/stories. Every parameter is optional.
| Param | Values | Default |
|---|---|---|
view | latest, stories, both | both |
outlet | any outlet name, e.g. Hacker News | all |
bias | left, center, right | all |
blindspot | true | off |
developing | true: three or more newsrooms in the last 90 minutes | off |
compare | true: attach the side-by-side breakdown to each story | off |
q | substring match on headline and summary text | none |
limit | 1β200 | 60 clusters / 120 headlines |
Two more endpoints. GET /api/health reports every feed and answers 503 when more than
half are down, so you can point a monitor at it as is. GET /api/sources lists each feed with
its bias, its side and its parent newsroom.
CORS is open. Feeds are re-pulled at most every 2 minutes. Responses are no-store (see below). ts is epoch ms, or 0 when the feed gave no date. Those sort to the bottom. Full spec: openapi.yaml Β· orientation for agents: llms.txt.
One Cloudflare Worker (worker.js) polls every feed in src/feeds.js and serves the page,
the API and MCP from one pooled pull:
latest: every headline, newest first.stories: headlines clustered by title-keyword overlap. Each source tagged left, center or right. One-sided clusters flagged blindspot.Only the feed pull is cached, under one constant key. Filtering happens per request in shape(), after it, and responses go out no-store. The zone's CDN cache ignores query strings, so caching them would hand one caller's ?outlet= to everyone. Nothing is refetched either way. Only the cheap filtering runs again.
Clusters are filtered after clustering. The flat feed is filtered before its 120-item cap. Both orders matter. Narrow the input first and you lose the cross-outlet comparison. Filter after the cap and small outlets vanish.
Each source has a score from -2 (left) to +2 (right). 0 is center, or non-political for tech outlets like Hacker News and Daring Fireball. I assigned these by hand in FEEDS. They are a rough lean, not a rating.
CBC Β· The Guardian Β· NPR Β· BBC Β· Global News Β· National Post Β· Fox News Β· NY Post Β· Daily Wire Β· Hacker News Β· Daring Fireball Β· NBC News Β· Wall Street Journal Β· NY Post Opinion Β· Vancouver Sun Β· The Province
Add one by appending [outlet, bias, url] to FEEDS at the top of worker.js. Any RSS 2.0 or Atom feed works.
Run npm run feeds after touching FEEDS. It checks recency, the only way to catch a
zombie: a feed that still answers 200 with clean XML whose newest item is two years old. CNN
did that for three years. An item count never noticed.
Cloudflare Workers plus Static Assets. One deploy serves the page, /api/stories and /mcp.
test/ covers the four modules in src/ with no network and no Worker runtime:
| File | What it holds down |
|---|---|
parse.test.mjs | Entity decoding, double-escaped summaries, CDATA and Atom shapes, and the rejection of javascript: and data: links |
stories.test.mjs | Clustering, the newsroom-not-feed counting rule behind blindspots, the developing window, and filter-after-cluster ordering |
load.test.mjs | Feed failure reporting, timeouts, the degraded/stale fallback, and the rule that a bad pull never overwrites the last good one |
worker.test.mjs | Query parsing and clamping, and that everything under /api/ answers JSON with CORS, including 404s, 405s and 500s |
mcp.test.mjs | JSON-RPC framing, malformed input, and each tool's contract |
Security: see SECURITY.md.
MIT 2026, Joshua Trommel. Headlines and links belong to their publishers. Sidewise stores nothing and links out to the original.
REST (/api/*), the POST /mcp server, and the reader's in-page WebMCP tools
(public/webmcp.js) expose the same four operations. They are tested against each other so
they can't drift. See docs/API.md.
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/sidewise)<a href="https://allmcps.com/mcp/sidewise"><img src="https://allmcps.com/api/badge/sidewise?style=directory" alt="Sidewise on AllMCPs" /></a>