Skip to main content
Glama
Nikhilprasad-r

Redmine MCP Server

redmine_news_create

Create news for a Redmine project by passing the project ID or identifier and the news data.

Instructions

Create news (POST /projects/:project_id/news.json or POST /news.json with project identifier).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
newsYes
project_idYesproject id or identifier

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

C2.8/5.0
Behavior2/5

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

No annotations are present, so the description carries the full burden of behavioral disclosure. It reveals the HTTP method and two POST endpoints but does not describe side effects, authorization requirements, validation behavior, duplicate handling, or the response/error format.

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 a single front-loaded sentence with no filler. Every part earns its place: the action, the primary endpoint, and the alternative POST form with project identifier are all communicated efficiently.

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

Completeness2/5

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

With no annotations, no output schema, and a nested 'news' object that is essentially undocumented, this description is not complete enough to invoke the tool correctly. An agent can identify the endpoint but cannot construct the payload or anticipate results or errors without external knowledge.

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

Parameters2/5

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

The description adds little beyond the schema: the schema already documents project_id as 'project id or identifier', and the description only repeats that idea. The required 'news' object has no schema description and no description-level explanation, leaving the agent without any clue about required fields or payload structure.

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?

The description clearly names the operation ('Create news') and gives exact endpoints, which makes its purpose evident among the news resource siblings. It does not explicitly contrast with redmine_news_update or other news tools, so sibling differentiation is implicit rather than stated.

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 guidance on when to use this tool versus alternatives like redmine_news_update or redmine_news_delete. The only usage signal is the verb 'Create' and the endpoint, with no mention of prerequisites, permissions, or when to prefer one POST form over the other.

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

Deploy Server

Other Tools