Skip to main content
Glama

Get Attachment

fizzy_get_attachment
Read-only

Retrieve a file attached to a Fizzy card or comment to view the screenshot, mockup, or diagram it shows. Pass the signed_id and filename from card data; use preview_variation for a resized image.

Instructions

Fetch a file already attached to a card or comment and return it so it can actually be looked at. Images (PNG, JPEG, GIF, WebP) come back as an image the model can see; any other type comes back as metadata with a note that it cannot be rendered, and its bytes are not downloaded. Get the 'signed_id' and 'filename' to pass here from fizzy_get_card or fizzy_get_card_comments called with include_attachments=true — this tool takes no URL, and building the arguments from a URL by hand will not work. Prefer the preview: when the attachment reports a 'preview_variation', pass it as 'variation' to get the resized version, which is a fraction of the bytes and is what a full-resolution screenshot is refused in favour of. Use this whenever a card or comment references a screenshot, mockup, diagram, or error image and the answer depends on what it shows.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
filenameYesThe attachment's filename, from the same 'filename' field, e.g. 'screenshot.png'. A single file name — anything containing a path separator is rejected.
signed_idYesThe attachment's ActiveStorage signed id, exactly as reported in the 'signed_id' field of fizzy_get_card or fizzy_get_card_comments with include_attachments=true. Not a URL and not a file path.
variationNoThe attachment's 'preview_variation' token, to fetch the resized preview instead of the full-resolution original. Strongly preferred for screenshots and photos: the preview is a fraction of the bytes at the resolution a model can actually read, and a large original is refused outright. Omit only when the attachment reported no preview_variation, or when full resolution is genuinely needed.
account_slugYesThe account slug identifier (e.g., '123456' or '/123456'). This identifies which Fizzy account to operate on. Get available account slugs from fizzy_get_identity or fizzy_get_accounts.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observedv1.1.0

TDQS

A4.8/5.0
Behavior5/5

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

Annotations already mark it read-only and non-destructive; the description adds substantial behavior beyond that: media type classification, when bytes are not downloaded, when rendering is refused, and preview behavior. No contradictions with annotations.

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?

Rich content earns its place: every sentence adds context or constraint. Slightly long, but each clause carries meaning about when/how to use or when not to use the tool; the key usage context is front-loaded after the first sentence.

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

Completeness5/5

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

For a 4-param read-only fetch tool with no output schema, it covers what the model sees, when bytes are not downloaded, which variation to request, where params come from, and the refusal case. An agent can invoke correctly without guessing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description adds real value by explaining where each parameter comes from (signed_id/filename from fizzy_get_card/comments with include_attachments=true), that variation should be omitted appropriately, and that URL/path construction won't work. This is more than the schema alone provides.

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?

States a clear verb ('Fetch') and resource ('a file already attached to a card or comment'), then differentiates from siblings by explaining what comes back. It explicitly distinguishes itself from upload (fizzy_upload_file) and the card/comment list tools that expose attachment metadata.

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?

Goes far beyond a simple trigger: it tells the agent when to use it (any card/comment referencing a screenshot/mockup/diagram/error image where the answer depends on the image), what to prefer (preview_variation), and what not to do (do not build args from a URL by hand). This is exemplary routing guidance.

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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Fabric-Pro/fizzy-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server