Skip to main content
Glama
igorolv

redmine-mcp-server

listQueries

listQueries
Read-onlyIdempotent

List saved Redmine issue queries to locate stored filters, including those on custom fields. Returns query IDs and names; use a queryId to load matching issues via listIssues.

Instructions

Discover saved Redmine issue queries (stored filters), especially filters involving custom fields. Returns query IDs and names rather than issue results; pass a selected queryId to listIssues.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
offsetNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitYesMaximum number of queries that may appear on this page.
offsetYesZero-based offset of the first query on this page.
queriesNoQueries on this page.
totalCountYesTotal number of queries across all pages.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint/idempotentHint, so the description's added value is contextual: it reveals that results are query metadata (IDs/names) rather than issues, and that the output feeds listIssues. It does not mention pagination behavior for limit/offset, but the output schema and read-only annotations lower the burden.

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, each earning its place: the first defines the purpose/scope, the second clarifies the return type and the follow-up workflow. The key distinction from listIssues is front-loaded.

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?

For a read-only, zero-required-parameter listing tool with an output schema, the description covers purpose, scope, return shape, and downstream use. The only real gap is that limit/offset remain semantically undocumented in both schema and prose, which is minor because they are optional and self-explanatory as pagination terms.

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?

Schema description coverage is 0%, and the description provides no explanation of limit or offset. The parameter names weakly imply pagination controls, but the description neither confirms nor documents their meaning, defaults, or constraints, so it fails to compensate for the missing schema descriptions.

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 a specific verb and resource ('Discover saved Redmine issue queries (stored filters)') and distinguishes it from sibling list tools by stating that it returns query IDs and names, not issue results. It also explicitly routes to listIssues for the follow-up call, making the tool's role unambiguous.

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

Usage Guidelines5/5

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

It gives a clear when-to-use signal ('especially filters involving custom fields') and an explicit when-not/alternative: 'Returns query IDs and names rather than issue results; pass a selected queryId to listIssues.' An agent can decide between listQueries and listIssues without additional inference.

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