Skip to main content
Glama
onozaty

Redmine MCP Server

by onozaty

downloadAttachmentAsBase64Content

Read-only

Download a Redmine attachment by ID and filename, receiving its content as Base64-encoded data.

Instructions

Download attachment file from Redmine as Base64 encoded content

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathParamsYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.2.0

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, indicating a safe read operation. The description adds the Base64 output format, which is important for handling the result. However, it does not disclose other behaviors like size limits or how the content is returned (e.g., as a string in the result). The description adds some value beyond annotations but lacks depth.

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, concise sentence that front-loads the action and format. No wasted words, and the key information is presented efficiently.

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

Completeness3/5

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

The tool is relatively simple, but with no output schema, the description should specify the return structure more clearly. It mentions Base64 content but not how it is packaged (e.g., a string field in the result). It also lacks usage guidance and parameter semantics, which are necessary for correct invocation. Given its simplicity, a 3 is appropriate.

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 does not elaborate on the parameters. The parameter names are self-explanatory (attachmentId and filename), but the description does not clarify their relationship or how the filename is used. With low schema coverage and no additional explanation, the agent may not know the specific requirements for invoking the tool correctly.

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 clearly states the action (download), the resource (attachment file from Redmine), and the output format (Base64 encoded content). This differentiates it from siblings like downloadAttachmentToLocalFile and downloadThumbnailAsBase64Content based on the output format distinctly mentioned.

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?

The description does not mention when to use this tool versus alternatives such as downloadAttachmentToLocalFile or downloadThumbnailAsBase64Content. It provides no selection criteria, exclusions, or context for choosing between similar download tools.

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