Skip to main content
Glama

bdesign_asset_get

Read-only

Retrieve a specific asset from a project using its stable assetId. Get asset details directly to reference or process them in your workflow.

Instructions

Read one project Asset by stable assetId.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
assetIdYes
projectIdNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.3

TDQS

B3.4/5.0
Behavior3/5

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

The readOnlyHint annotation already establishes safety, and the description's 'Read' confirms no mutation. However, the description adds little beyond that, such as failure behavior or scoping effects of projectId.

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?

Single concise sentence that communicates the core operation without extraneous detail. Well structured and easy to parse.

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?

Adequate for a simple read operation, but incomplete regarding projectId semantics and how it interacts with assetId. No output schema is present, yet the description does not describe expected results or error cases.

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

Parameters2/5

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

The description mentions assetId implicitly but does not clarify its format or uniqueness, and projectId is entirely unexplained. With no schema descriptions, coverage is low and the description does not compensate.

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?

States a specific verb ('Read'), a specific resource ('one project Asset'), and the key identifier ('stable assetId'). Clearly distinguishes a single-asset fetch from list/import operations.

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?

No explicit guidance on when to use this tool versus alternatives like bdesign_asset_list or bdesign_asset_import. The singular 'one' implies direct fetch by ID, but no when-not-to-use or alternative comparison is provided.

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