Skip to main content
Glama
Nikhilprasad-r

Redmine MCP Server

redmine_projects_list

Retrieve a list of Redmine projects with filters for status, pagination, and included details. Use this to fetch project data for integration or display.

Instructions

List projects (GET /projects.json).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
offsetNo
statusNo
includeNo
fetch_allNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

B3/5.0
Behavior2/5

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

No annotations are present, so the description must carry the full burden. It only indicates GET/read-only and gives no information about pagination behavior, default limits, authentication requirements, or the shape of the returned object.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is one short, front-loaded sentence with no filler. It is efficient, though perhaps too terse to support the richer parameter set.

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?

For a five-parameter endpoint with no output schema and no annotations, this description is the bare minimum. It tells the agent the endpoint but not what to expect from status/include/fetch_all, leaving the agent to guess at semantics.

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

Parameters1/5

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

With 0% schema description coverage and five parameters (limit, offset, status, include, fetch_all), the description mentions none of them. An agent cannot determine what 'include' supports or how fetch_all interacts with limit/offset.

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 names the operation explicitly ('List projects') and gives the endpoint, which clearly identifies a read-only collection operation. The verb 'List' differentiates it from sibling single-project tools like redmine_project_get and from mutation tools.

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

Usage Guidelines3/5

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

The usage is implied by the tool name and the verb: call it to obtain a collection of projects. However, it offers no explicit guidance on when to prefer it over redmine_project_get, nor does it mention pagination or filtering strategies for large result sets.

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