Skip to main content
Glama

update_asset

Update an asset's display name, read-only flag, and optional cover image by providing the workspace ID and asset ID.

Instructions

Update an asset's display name, read-only flag, and optionally its cover image.

workspace_id: target workspace ID — get available IDs from list_workspaces()
cover_image: local file path or http(s):// URL — SDK uploads automatically.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
asset_idYes
read_onlyNo
cover_imageNo
workspace_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.18

TDQS

A4.2/5.0
Behavior3/5

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

The description confirms the mutation (update) and notes that cover_image is automatically uploaded by the SDK. It does not disclose side effects or edge cases, but the annotations already cover read-only and destructive hints. Some additional context is added, but not extensive.

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 succinct and well-organized, with parameter explanations embedded directly. No redundant or unnecessary information is present.

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 provides enough context to invoke the tool correctly, including parameter semantics and the SDK behavior for cover_image. It does not mention output or errors, but no output schema is expected, and the tool's action is straightforward.

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?

The description explains two key parameters (workspace_id and cover_image) with actionable guidance. The remaining parameters (name, asset_id, read_only) are self-explanatory from their names and the tool's purpose. Since schema description coverage is 0%, the description partially compensates by clarifying complex inputs.

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 clearly states the tool updates an asset's display name, read-only flag, and optionally its cover image. It is specific and distinct from sibling tools that update other resources (e.g., update_workspace, update_channel).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool is for updating assets and provides helpful guidance on the workspace_id and cover_image parameters, including how to obtain workspace IDs. It does not explicitly contrast with alternatives, but the purpose is clear enough for typical use.

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