Sidewise
Server Details
News from 17 outlets with left/center/right bias tags and one-sided blindspot detection
- 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.
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.
Tool Definition Quality
Average 4.2/5 across 4 of 4 tools scored.
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.
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.
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.
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 toolscompare_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.
| Name | Required | Description | Default |
|---|---|---|---|
| q | Yes | Topic or headline words to find the story by. | |
| limit | No | How many matching stories to compare. Default 1, max 10. |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max stories, up to 200. |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Case-insensitive substring match on headline text. | |
| bias | No | Restrict to outlets of one political lean. | |
| view | No | Flat feed, clustered by story, or both. Default both. | |
| limit | No | Max results, up to 200. | |
| outlet | No | Restrict to a single outlet. | |
| developing | No | Only stories several newsrooms picked up in the last 90 minutes. |
Tool Definition Quality
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.
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.
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.
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.
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.
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
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceReal-time news events, clustered by AI from hundreds of sources, classified by topic and geography, ranked by importance.52MIT
- AlicenseAqualityAmaintenanceRead-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.82MIT
- FlicenseNot gradedqualityDmaintenanceAggregates 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
- AlicenseNot gradedqualityCmaintenanceEnables browsing and fetching curated politics and policy news feeds from various sources, with options to filter by category or keyword.15MIT
Your Connectors
Sign in to create a connector for this server.