Skip to main content
Glama

Server Details

News from 17 outlets with left/center/right bias tags and one-sided blindspot detection

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Unhealthy
Last Tested
Transport
Streamable HTTP
URL
Repository
nulljosh/sidewise
GitHub Stars
1
Server Listing
Newsline MCP Server

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.2/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct facet: news retrieval, cross-outlet wording comparison, one-sided story detection, and feed health diagnostics. Potential overlap between get_news with view=stories and compare_coverage is mitigated by clearly splitting headline grouping from side-by-side wording analysis.

Naming Consistency5/5

All four tool names follow a consistent snake_case verb_noun pattern. Three use the get_ prefix (get_news, get_blindspots, get_feed_health) and compare_coverage uses the same verb-first style with a clear object.

Tool Count5/5

Four tools is a well-scoped size for a news bias analysis server. Every tool has a distinct responsibility and the set feels intentionally curated rather than sparse or bloated.

Completeness5/5

The tool surface covers the full workflow of the domain: retrieving the news, comparing differing coverage of the same event, finding coverage blindspots, and verifying data freshness. There are no obvious pipeline dead ends or major missing operations.

Available Tools

4 tools
compare_coverageAInspect

Side-by-side wording of one story as left, center and right outlets headline it, plus the words each side uses that the others do not. Give a topic in q and the best-covered matching story is compared. Each source carries a bias score from -2 (left) to +2 (right); 0 is center or non-political.

ParametersJSON Schema
NameRequiredDescriptionDefault
qYesTopic or headline words to find the story by.
limitNoHow many matching stories to compare. Default 1, max 10.
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the behavioral burden. It discloses the core output (headline comparisons, unique words, and bias scores), the selection mechanism (best-covered matching story), and the scoring range (-2 to +2). This is solid transparency, though it does not mention potential limitations such as source scope or timeout behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with every part contributing: the output format, the input requirement, selection behavior, and bias scale. It is front-loaded and free of filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has only two parameters and no output schema, but the description gives enough detail about the returned content for an agent to understand what happens. It is slightly incomplete in not explaining how 'limit' interacts with the comparison, but that is already covered by the schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema already documents 'q' and 'limit'. The description restates 'q' but adds no new semantic detail beyond what the schema provides. The minimum viable baseline of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states what the tool does: it produces a side-by-side comparison of how one story is headlined by left, center, and right outlets, and highlights the unique words each side uses. It also distinguishes itself from sibling tools by focusing on comparison rather than general news retrieval, blind spots, or feed health.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear usage context: provide a topic via the 'q' parameter and the best-covered matching story is compared. It does not explicitly mention alternatives or when not to use it, but the purpose is specific enough that an agent understands when to invoke it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_blindspotsAInspect

Stories covered by only one side of the political spectrum — reported by left-leaning outlets but not right-leaning, or vice versa. Each source carries a bias score from -2 (left) to +2 (right); 0 is center or non-political. Useful for finding what a given audience is not being told.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax stories, up to 200.
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the burden. It explains the concept of blindspots and the bias score, but does not disclose response format, pagination, or whether limit defaults are applied. The read-only nature is implied but not stated. It adds moderate value beyond the tool name.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, each earning its place: the first defines the tool's output, and the second explains the bias scoring and use case. It is concise, front-loaded, and free of fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given only one parameter, no output schema, and no annotations, the description offers sufficient context for an agent to understand what the tool does and when to use it. It explains the underlying concept and scoring, but lacks explicit details about the return structure or limit behavior.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% for the only parameter (limit), which is described as 'Max stories, up to 200.' The description does not mention limit, so it adds no extra meaning beyond the schema. Baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool returns stories covered by only one side of the political spectrum, distinguishing it from the sibling tool get_news. It also explains the bias score scale, adding specificity to the resource.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides a clear use case: 'finding what a given audience is not being told.' It implies this tool is for blindspots rather than general news, but does not explicitly name when not to use it or compare with get_news.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_feed_healthAInspect

Which of the underlying news feeds answered on the last pull, and whether the data currently being served is complete or a stale fallback. Check this before treating an empty or one-sided result as real.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations present, the description itself carries the behavioral burden. It discloses valuable behavior: that this tool checks liveness of feeds, reports staleness, and distinguishes real data from fallback data. This goes beyond the tool name and alerts the agent to a data-quality pitfall, though it does not mention auth, rate limits, or side effects—none of which seem critical for a health-check tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two succinct sentences with no filler. It leads with the core stateful output, then adds a concrete operational cue. Every clause contributes meaning.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a no-parameter health-check tool, the description explains what it does and when to use it. It does not detail the exact return shape, but since there is no output schema, the agent can still infer that the answer includes a list of feed names and a completeness/staleness flag. It is slightly minimal but not incomplete for its simplicity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so there is nothing for the description to add beyond the trivially complete input schema. The privacy and completeness semantics in the description are relevant once the tool returns, not for parameter binding. Baseline 4 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific purpose: reporting which underlying news feeds answered on the last pull and whether the served data is complete or a stale fallback. This clearly distinguishes it from siblings like get_news or compare_coverage by focusing on feed health rather than content, coverage, or blindspots.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives a clear usage context: check this before treating an empty or one-sided result as real. It does not explicitly name when not to use it or compare with alternatives, but the guidance is concrete enough to direct an agent confidently.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_newsAInspect

Current headlines from 16 feeds from 14 newsrooms across the political spectrum. Each source carries a bias score from -2 (left) to +2 (right); 0 is center or non-political. Use view=latest for a flat reverse-chronological feed, or view=stories to group the same event as covered by different outlets.

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoCase-insensitive substring match on headline text.
biasNoRestrict to outlets of one political lean.
viewNoFlat feed, clustered by story, or both. Default both.
limitNoMax results, up to 200.
outletNoRestrict to a single outlet.
developingNoOnly stories several newsrooms picked up in the last 90 minutes.
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations present, the description carries behavioral transparency. It reveals the 16/14 feed news-room scope, the -2 to +2 bias scoring model, and the distinction between flat and story-grouped results. It does not disclose response structure or possible pagination behavior, but these are not central to invoking the tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences, no filler, and the the most mission-critical fact is front-loaded: it returns current headlines from a specific feed set. Every remaining sentence provides distinct context for choosing a viewpoint view.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given six optional parameters, complete schema coverage, no output schema, and no nested objects, the description is adequate enough to select and invoke the tool correctly. The missing return-format detail is a mirad concern, but it does not block correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so a baseline of 3 is appropriate; the description goes beyond it by explaining what view=latest versus view=stories actually means and by defining the bias score scale. This extra semantic context is genuinely useful for param selection.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States the tool provides current headlines from a concrete set of feeds/newsrooms and explicitly clarifies the political-bias context. It is clearly about news retrieval, but it does not explicitly differentate itself from the sibling tools beyond the obvious differrence in name.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear guidance on how to use the view parameter: latest for a reverse-chronological flat feed and stories for event clustering. It does not exclud or route away from the sibling tools, so it lacks the explicit alternative guidance needed for a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    Real-time news events, clustered by AI from hundreds of sources, classified by topic and geography, ranked by importance.
    52
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    Read-only, source-linked news intelligence for AI agents: search The Neural Ledger's stories, retrieve story details with citations and revision history, and resolve related entities and assets. It is an evidence layer, not a trading or execution service.
    8
    2
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    Aggregates news from 7 APIs and unlimited RSS feeds with AI-powered bias removal and synthesis. Provides over 7,300 free daily requests with conversation-aware caching and 25 comprehensive news analysis tools.
    1
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables browsing and fetching curated politics and policy news feeds from various sources, with options to filter by category or keyword.
    15
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.