Skip to main content
Glama
jamesdeane2

MCP IT Glue Server

by jamesdeane2

get_flexible_asset_relationships

Retrieves all items linked to a specific flexible asset by its ID, returning a JSON string of related records for quick reference.

Instructions

Get all items related to a specific flexible asset.

This is a convenience method for a common use case.

Args: flexible_asset_id: The flexible asset ID

Returns: JSON string with all related items

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
flexible_asset_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

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?

No annotations are present, so the description carries full responsibility for behavioral disclosure. It only states the tool 'gets all items related' and returns a 'JSON string'. It doesn't mention error behavior for invalid IDs, whether results are limited/paginated, what types of related items are included, or any permissions needed. This is minimal for a read operation with no annotation support.

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 brief and to the point, with the core action front-loaded. The Args and Returns sections are minimal but not bloated. It earns points for being concise, though it sacrifices substance for brevity.

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?

Despite having an output schema, the description doesn't elaborate on the nature of 'related items' or the structure of the returned JSON beyond stating it's a string. It lacks context about how this relates to the generic list_related_items or other relationship getters, and it doesn't cover edge cases or limits. For a tool with zero annotations and no param docs, this is incomplete.

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 coverage is 0%, and the description's Args section just repeats the parameter name ('flexible_asset_id: The flexible asset ID') without adding meaning beyond the schema's title and type. The description fails to explain how the ID is used or any format expectations, leaving the agent with no additional semantic value.

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 clearly states the tool's function: 'Get all items related to a specific flexible asset.' It uses a specific verb and resource, and the name reinforces the flexible asset context. However, it doesn't explicitly differentiate from the sibling 'list_related_items' or other relationship getters (e.g., get_configuration_relationships), though the name makes the distinction obvious.

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 phrase 'convenience method for a common use case' vaguely implies it's a shortcut but provides no explicit guidance on when to use this tool versus list_related_items or the configuration/contact-specific relationship tools. No when-not conditions or alternatives are named.

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