Skip to main content
Glama

scan_export_folder

Scan a local folder and return a categorized manifest of importable assets, helping you preview what would be imported before running a batch import.

Instructions

Scan a local folder for importable assets and return a categorised manifest.

This tool runs LOCALLY on the MCP server machine — it does NOT connect to UE5. Use it to preview what would be imported before calling batch_import_folder.

Args: folder_path: Absolute path to the folder on the MCP server machine (e.g. "/home/user/exports/Bastila" or "C:/KotOR/exports") recursive: If True, scan all subdirectories (default True)

Returns: JSON string with a categorised manifest: { "folder": "/home/user/exports/Bastila", "total_files": 12, "importable": 10, "skipped": 2, "categories": { "texture": [{"path": "...", "name": "...", "ext": ".png"}, ...], "mesh": [...], "audio": [...], "unknown": [...] }, "subdirs": ["textures", "meshes"] }

KB: see knowledge_base/31_GENERATIVE_CONTENT_PIPELINE.md#overview Example: scan_export_folder(folder_path="/Game/MCP_Test/Example")

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
recursiveNo
folder_pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden. It discloses that the tool runs locally, does not connect to UE5, and returns a manifest rather than performing an import. It does not explicitly state 'read-only' or 'non-mutating,' but the scanning/preview framing strongly implies no side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-organized with Args, Returns, KB, and Example sections, and every section serves a purpose. However, the contradictory example is a structural flaw – it is actively misleading. The length is acceptable, but the incorrect usage example prevents a higher score.

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?

The description covers local execution, the relationship to batch_import_folder, both parameters, a detailed return manifest example, and a KB reference. The main gap is the invalid example path, which creates a correctness issue, but overall the description is sufficiently complete for an agent to call the tool correctly in most cases.

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 Args section adds strong meaning beyond the 0%-coverage schema: folder_path is defined as an absolute local path with OS examples, and recursive is explained with its default. However, the bottom example uses '/Game/MCP_Test/Example', a UE content path, which directly contradicts the required local absolute path and could mislead an agent into passing an invalid argument.

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 opens with a specific verb and resource: 'Scan a local folder for importable assets' and states the output is a 'categorised manifest.' It further differentiates from siblings by explicitly noting it runs locally and does NOT connect to UE5, mentioning batch_import_folder as the related follow-up.

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?

The description explicitly says 'Use it to preview what would be imported before calling batch_import_folder,' providing a clear when-to-use and naming the alternative. It also clarifies the local-only, non-UE5 context, so an agent will not try to use it for engine-side operations.

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