Skip to main content
Glama

List Redmine news

list_news
Read-onlyIdempotent

Fetch visible Redmine news items with pagination controls, returning read-only data according to the configured user's permissions.

Instructions

Read visible global Redmine news from GET /news.json for the configured API user. Supports the documented offset, limit, and page collection pagination controls. Redmine applies its ordinary news and project visibility rules; this tool never changes Redmine data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number. Redmine converts it to an offset using the selected limit.
limitNoNumber of news items to return. Redmine caps this at 100.
offsetNoNumber of news items to skip

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
newsYes
pagingYes
filtersYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the description's 'never changes Redmine data' is redundant. It adds value by specifying visibility rules, the configured API user scope, and pagination behavior beyond what the schema provides. No contradiction with annotations.

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?

Two sentences, front-loaded with the core action, no wasted words. Efficient and to the point.

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

Completeness5/5

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

Low-complexity tool with full schema coverage and annotations covering safety. Output schema exists. The description covers scope, pagination, visibility rules, and read-only behavior. Nothing essential is missing for an agent to call it correctly.

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 100%, so each parameter is fully described in the schema. The description only mentions pagination controls generically without adding syntax or format details beyond the schema. Baseline 3 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?

States a specific verb (read) and resource (global Redmine news) with the endpoint, and implicitly distinguishes from the sibling list_project_news by saying 'global'. The tool's scope is unambiguous.

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?

Clearly implies use for site-wide news rather than project-specific news, and notes it never changes data, reinforcing read-only usage. However, it does not explicitly name the alternative tool (list_project_news) or provide explicit when-not guidance, leaving some inference to the agent.

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