Skip to main content
Glama

List Redmine projects

list_projects
Read-onlyIdempotent

Fetch Redmine projects visible to the configured API user. Supports pagination and optional associations like trackers, categories, and custom fields without modifying data.

Instructions

Read projects visible to the configured Redmine API user from GET /projects.json. Supports the documented offset, limit, and page pagination controls, plus trackers, issue_categories, enabled_modules, time_entry_activities, and issue_custom_fields associations. This tool never changes Redmine data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number. Redmine uses the selected limit to calculate the offset.
limitNoNumber of projects to return. Redmine caps this at 100.
offsetNoNumber of projects to skip
includeNoProject associations to include: trackers, issue_categories, enabled_modules, time_entry_activities, or issue_custom_fields

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
pagingYes
filtersYes
projectsYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.9/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; the description reinforces this with 'This tool never changes Redmine data.' It also adds useful behavioral context beyond annotations: only projects visible to the configured API user are returned, and pagination plus association inclusion are supported.

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?

Three sentences with the core action front-loaded, followed by pagination and association capabilities, then a safety guarantee. Every sentence serves a purpose, though the explicit endpoint string and the word 'documented' add minor redundancy.

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?

With an output schema present and rich annotations, the description covers the essential invocation context: resource scope, visibility, pagination controls, associations, and read-only behavior. Nothing critical is missing for an agent to call this tool 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 the schema fully documents all four parameters. The description adds context that offset, limit, and page are pagination controls and that the include parameter supports the five listed associations, but this largely restates what the schema already provides. No critical parameter meaning is missing.

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 uses a specific verb ('Read') and names the exact resource ('projects visible to the configured Redmine API user from GET /projects.json'). It clearly distinguishes this list operation from sibling getter tools like get_project by its scope (multiple projects) and the mention of pagination and associations.

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 description gives clear context for what the tool does, but it does not explicitly state when to use it over alternatives such as get_project or list_project_issue_categories. There is no when-not-to-use guidance, though the 'never changes Redmine data' statement implicitly rules out write purposes.

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