Skip to main content
Glama

Move media to folder

move_media_to_folder

Move one or more media files into a media folder.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idsYesMedia file IDs to move (from list_media)
folder_idYesTarget folder ID (from list_media_folders)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNoConfirmation of the move, and how many files it covered.
successYesTrue when the call succeeded. A failure comes back as an error result instead.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": false,
      +  "properties": {
      +    "data": {
      +      "description": "Confirmation of the move, and how many files it covered."
      +    },
      +    "success": {
      +      "description": "True when the call succeeded. A failure comes back as an error result instead.",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "success"
      +  ],
      +  "type": "object"
      +}
  2. First observed

TDQS

A3.6/5.0
Behavior3/5

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

The annotations already declare readOnlyHint=false and destructiveHint=false, signaling a mutating but non-destructive operation. The description adds that the action applies to one or more media files, which slightly enriches the batch aspect, but it does not disclose behavior like overwriting existing folder assignments, atomicity, or permission requirements.

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, fully front-loaded sentence that communicates the operation, the resource set, and the destination with zero filler. Every word earns its place.

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 two-parameter tool with an output schema and clear parameter descriptions, the description plus schema covers everything needed to make a correct call. The only meaningful gap is the lack of usage context versus sibling media-management tools, but that does not make the definition incomplete for invoking the tool 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?

Schema coverage is 100%, and both parameters already include helpful provenance ('from list_media' and 'from list_media_folders'). The description restates the concept of moving files into a folder but adds no unique semantic information beyond what the schema provides, so the baseline of 3 applies.

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 uses a specific verb ('Move') with a clear resource ('media files') and destination ('media folder'), and the scope 'one or more' adds precision. This distinguishes it from sibling tools like move_widget and move_client_to_folder, which act on different resource types.

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 use this tool versus alternatives such as rename_media_file, archive_media_file, or create_media_folder. There are no exclusions, prerequisites, or context cues for when this operation is preferred over other media management tools.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources