Skip to main content
Glama
jamesdeane2

MCP IT Glue Server

by jamesdeane2

get_flexible_asset

Retrieve a specific flexible asset by ID to get its complete details and all traits, returned as JSON.

Instructions

Get a specific flexible asset by ID.

Args: asset_id: The flexible asset ID

Returns: JSON string with the flexible asset details including all traits

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
asset_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.8/5.0
Behavior2/5

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

Annotations are absent, so the description carries the full burden of behavioral disclosure. It states the return type (JSON string with details) but does not mention that it is a read-only operation, any permission requirements, or what happens if the asset does not exist. The lack of side-effect disclosure and error behavior is a gap.

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 concise and well-structured with a clear summary, args, and returns sections. It front-loads the purpose and avoids redundant text. The Returns sentence adds useful context about the output format, though it may duplicate output schema information.

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 simple get-by-ID tool, the description covers the basic input and output, but it lacks guidance on when to use this tool versus siblings, potential error scenarios, or prerequisites like authentication. Given the breadth of related flexible asset tools, this omission reduces completeness for an agent.

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%, so the description must compensate. It only restates 'asset_id: The flexible asset ID,' which adds no new meaning beyond the parameter name and type. It fails to explain how to obtain the ID, any format constraints, or the relationship to other tools. This is insufficient given the zero coverage.

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 states the action clearly: 'Get a specific flexible asset by ID.' It specifies a verb (Get), resource (flexible asset), and selection criterion (by ID), which distinguishes it from sibling list and search tools. No ambiguity in purpose.

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 does not explicitly mention when to use this tool versus alternatives like list_flexible_assets or search_flexible_assets. It only implies that you need an asset ID, but provides no exclusions or alternative routing. The user must infer that this is for known IDs, which is insufficient.

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