Skip to main content
Glama

immich_get_album

Retrieve album details and all assets from Immich. Set withImages to true to include thumbnail images of the first 10 assets.

Instructions

Get album details including all assets. Use withImages=true to see thumbnails of album contents.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesAlbum ID
withImagesNoInclude thumbnail images of first 10 assets

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden and does disclose that the response includes all assets and that withImages adds thumbnails. However it omits permissions/auth, whether large albums are truncated or paginated, and the read-only nature is only implied by 'Get'.

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?

Two short sentences with the core purpose front-loaded and the optional flag second. No filler, though it is terse enough to leave gaps rather than wasteful.

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?

For a simple two-parameter read tool with no output schema and no annotations, the description is adequate but thin: it never characterizes the returned album object or asset list, which the missing output schema leaves undocumented.

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 baseline is 3. The description restates withImages as showing 'thumbnails of album contents', which is slightly less precise than the schema's 'first 10 assets', so it adds little beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource ('Get album details') and adds scope ('including all assets'), so an agent can distinguish it from immich_list_albums or immich_get_asset. It does not name a sibling explicitly, so it stops short of a 5.

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?

It offers a conditional hint ('Use withImages=true to see thumbnails'), which is parameter guidance rather than when-to-use routing. There is no statement of when to prefer this over immich_list_albums or immich_get_asset, so usage is only implied.

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