Skip to main content
Glama

Get saved section

get_asset
Read-only

Get a single asset by ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesAsset ID (from list_assets).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNoThe saved section — id, name, description, tags and the datasources it draws on. Its widgets come from list_asset_widgets.
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": {
      +      "additionalProperties": {},
      +      "description": "The saved section — id, name, description, tags and the datasources it draws on. Its widgets come from list_asset_widgets.",
      +      "type": "object"
      +    },
      +    "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?

Annotations already declare readOnlyHint=true and destructiveHint=false, so the agent knows this is a safe read operation. The description adds no behavioral context beyond what annotations provide—it doesn't mention error behavior, return format, or whether the asset must be unarchived. With annotations covering the safety profile, a 3 is appropriate: the description is consistent with annotations but adds minimal behavioral value.

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 sentence with zero waste. It front-loads the verb and resource, and the 'by ID' qualifier is the only necessary detail. This is appropriately concise for a simple lookup tool.

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 single-resource read tool with one parameter, an output schema, and read-only annotations, the description is nearly complete. The only minor gap is that it doesn't clarify whether the asset must be unarchived or whether archived assets are retrievable, but this is a minor edge case given the sibling archive_asset and restore_from_archive tools exist. The output schema presumably documents the return shape, so the description doesn't need to.

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 description coverage is 100%, so the schema already documents the single parameter. The description adds the hint that the ID comes from list_assets, which is a small semantic addition beyond the schema's 'Asset ID (from list_assets)'—actually the schema already includes this hint, so the description adds nothing beyond the schema. Baseline 3 is correct when schema does the heavy lifting.

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 'Get a single asset by ID' clearly states the verb (get), the resource (asset), and the lookup mechanism (by ID). It distinguishes itself from list_assets (which lists assets) and update_asset/archive_asset (which mutate assets), though it doesn't explicitly name those siblings. The title 'Get saved section' is somewhat confusing because it uses 'section' instead of 'asset', but the description resolves this by using the canonical resource name.

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

Usage Guidelines3/5

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

The description implies the usage context: use this when you have an asset ID and need a single asset's details. It doesn't explicitly state when not to use it or name alternatives like list_assets for fetching multiple assets. The parameter description 'Asset ID (from list_assets)' provides a useful hint about where the ID comes from, which is a form of usage guidance, but there's no explicit exclusion of alternatives.

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