Skip to main content
Glama
eyalbarash
by eyalbarash

cigchat_media_library

Retrieve member-uploaded media files from the workspace library. Filter by media type, uploader, or page to locate specific images, audio, video, or files.

Instructions

Get member-uploaded media [GET /media-library] Requires the "Manage Team" scope on the token.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number, between 1 and 100
typeNoMedia type. image, audio, video, file. When omitted, all media types are returned.
limitNoNumber of items in the response
user_idNoWorkspace member ID. When omitted, media uploaded by any member is returned. When the value is 0, it will return media uploaded from bot or bot users

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.2.0
    • changedInput schema / properties / user_id / description
      Previous value: -"Workspace member ID. When omitted, media uploaded by any member is returned."New value: +"Workspace member ID. When omitted, media uploaded by any member is returned. When the value is 0, it will return media uploaded from bot or bot users"
  2. First observedv0.1.0

TDQS

B3.3/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 transparency burden. It discloses a prerequisite (Manage Team scope) and implies a read-only operation via the GET endpoint, which is useful. However, it does not describe pagination behavior, response format, or any side-effect-free guarantee explicitly, so only partial transparency is provided.

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 two short sentences with no filler. It front-loads the action, includes the endpoint, and tucks the scope requirement into a separate sentence. Every word earns its place.

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 read-only list tool with 100% parameter coverage, the combination of description and schema is nearly sufficient: the agent knows what to call, what arguments to pass, and what permission is needed. However, the lack of any usage guidance, response format hints, or behavior notes means an agent may not know what results to expect or when to choose this over other list tools.

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 input schema fully documents all four parameters (page, type, limit, user_id) with their meanings and defaults. The description itself adds no parameter-specific detail, so the baseline of 3 is appropriate.

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?

The description uses a specific verb-resource pair ('Get member-uploaded media') and includes the endpoint, making the core purpose clear. It does not explicitly differentiate from sibling list tools, but none of the listed siblings target media, so ambiguity is low. The phrase 'member-uploaded' adds useful scope.

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 gives no guidance on when to prefer this tool over alternatives, nor does it mention any exclusions or related tools. It states a scope requirement but not the context in which an agent should pick this tool. This is a significant gap for a list endpoint with many sibling tools.

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

Deploy Server

Other Tools