Skip to main content
Glama
rnakashima1

Local News Matters MCP server

by rnakashima1

get_article_by_slug

Retrieve a single Local News Matters article using its URL slug (the last path segment) from the WordPress REST API. Returns JSON or markdown for direct reading.

Instructions

Fetch a single article by its URL slug (the last path segment of its URL).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYes
response_formatNojson

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior2/5

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

With no annotations provided, the description carries the full disclosure burden. 'Fetch' implies a read, but there is no statement about read-only safety, missing-slug behavior, or whether the call is scoped/rate-limited, and the response shape is left entirely to the output schema.

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?

A single tight sentence that front-loads the action and immediately clarifies the one ambiguous term. Nothing is wasted.

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

Completeness3/5

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

An output schema exists so return values need not be described. But for a two-parameter lookup tool with no annotations, the description omits the response_format option and any differentiation from sibling get_article, leaving meaningful gaps.

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 description coverage is 0%, so the description must compensate. It does a good job explaining `slug` (the last path segment of the URL), but never mentions `response_format`, whose meaning is only available indirectly through the $defs enum title. Half the parameters are effectively undocumented in the description.

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 a specific verb (Fetch) and resource (a single article) plus the keying mechanism (URL slug), which is more than a restatement of the name. It does not, however, distinguish itself from the sibling get_article, so an agent cannot tell from the description alone which one to prefer.

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

Usage Guidelines2/5

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

There is no when-to-use guidance, no statement of when this is preferable to get_article or search_articles, and no note about what happens when the slug does not exist. The reader must infer the selection criteria entirely.

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