Skip to main content
Glama

List Redmine project news

list_project_news
Read-onlyIdempotent

Retrieve visible news items for a specific Redmine project, with support for pagination via offset, limit, and page parameters.

Instructions

Read visible news for one Redmine project from GET /projects/:project_id/news.json for the configured API user. The required project_id is a positive numeric project ID or valid project identifier. Supports the documented offset, limit, and page collection pagination controls. Redmine applies its ordinary project and news 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
project_idYesPositive numeric project ID or valid Redmine project identifier

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
newsYes
pagingYes
filtersYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds useful context: it never changes Redmine data, it respects Redmine's visibility rules, and it operates as the configured API user. This goes beyond the annotations without contradicting them.

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 with no filler. The core action and endpoint are front-loaded, followed by the parameter requirement, pagination support, and a clear read-only guarantee. Every sentence earns its place.

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 is a simple read-only list operation with a rich schema and output schema, so the description covers the essentials: endpoint, required parameter, pagination, and safety. It does not describe the response shape, but the output schema exists and the annotations carry the safety profile, so nothing critical is missing.

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 the schema already documents all four parameters. The description adds the endpoint context and confirms project_id accepts a numeric ID or identifier, but it does not add meaning beyond the schema's own descriptions. 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?

The description states a specific verb ('Read'), a specific resource ('visible news for one Redmine project'), and the exact API endpoint. It also distinguishes itself from the sibling list_news by scoping to a single project, so an agent can tell them apart.

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 clearly states the tool reads news for one project and mentions the required project_id, which implies when to use it. It does not explicitly name alternatives or exclusions, but the single-project scope and the sibling list_news provide enough context for selection.

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