Skip to main content
Glama

asset_import

Copies an immutable source, reference, or artwork file into a project, hashes and analyzes it. Excludes reference audio from render input.

Instructions

Copy an immutable source/reference/artwork into the project, hash and analyze it. Reference audio is forbidden as render input.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes
roleYes
project_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.6/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It reveals that the asset is immutable and that hashing/analysis occurs, but it does not disclose side effects (e.g., whether existing assets are overwritten), required permissions, error handling, or the return value. This is a significant gap for a mutation-like operation.

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?

The description is compact: two sentences, with the core action in the first sentence and a constraint in the second. It is front-loaded and wastes no words, though the second sentence is tangential to the primary purpose.

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

Completeness2/5

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

For a tool with three required parameters and no output schema, the description is incomplete. It does not explain the expected path format, how the role affects processing, what happens on conflict, or what the tool returns. An agent would need to guess or inspect other tools to safely invoke this.

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

Parameters1/5

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

Schema description coverage is 0%, and the description provides no explanation of the parameters. It does not clarify what 'path' should point to, how 'project_id' is used, or the implications of each 'role' value beyond listing them. The description adds almost no value beyond the bare 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?

The description states a specific action ('Copy') and a specific resource ('immutable source/reference/artwork into the project'), and mentions additional behaviors (hash and analyze). This is clear enough to distinguish from generic import tools, though it does not explicitly name sibling tools like project_import or asset_relink.

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 includes a constraint ('Reference audio is forbidden as render input') but gives no guidance on when to use this tool versus alternatives. It does not mention scenarios where another tool should be preferred, nor does it state prerequisites or typical use cases.

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