Skip to main content
Glama
onozaty

Redmine MCP Server

by onozaty

downloadThumbnailAsBase64Content

Read-only

Fetch a Redmine attachment thumbnail by ID, obtaining the image as base64-encoded data for use in integrations.

Instructions

Download thumbnail 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

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the safety profile is covered. The description adds the Base64 encoding behavior but does not disclose details like error handling, size limits, or the exact response structure. Given the annotation coverage, the added value is modest but sufficient.

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?

A single sentence that is front-loaded with the action and format, with no extraneous words. It efficiently conveys the essential purpose without 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?

For a simple read-only operation with one parameter and no output schema, the description is mostly complete. It lacks explicit return value details (e.g., whether the Base64 string is wrapped in JSON), but the core behavior is clear enough for an agent to invoke it 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?

The input schema already provides a description for attachmentId ('Redmine attachment ID to download thumbnail for'), so schema coverage is essentially high. The tool description does not add any parameter-specific information beyond this, so it stays at the baseline without going higher.

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 states a specific verb ('Download'), a clear resource ('thumbnail from Redmine'), and the output format ('Base64 encoded content'). This distinguishes it from sibling tools like downloadAttachmentAsBase64Content (full attachment) and downloadThumbnailToLocalFile (local file), so an agent can tell them apart without opening schemas.

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

Usage Guidelines4/5

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

The description implies when to use it: when a thumbnail is needed as Base64 content. It does not explicitly name alternatives or exclusions, but the format distinction ('Base64 encoded content' vs. local file) provides clear context. There's no misleading guidance.

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