Skip to main content
Glama
jamesdeane2

MCP IT Glue Server

by jamesdeane2

get_organization_flexible_assets

Get flexible assets for an organization, with optional filtering by asset type and archived status, pagination, and output format choices. Returns JSON.

Instructions

Get all flexible assets for an organization.

Args: organization_id: The organization ID flexible_asset_type_id: Optional filter by type include_archived: Whether to include archived assets page: Page number (starts at 1) page_size: Number of results per page (max 1000) output_format: Output format - "full" (all fields), "compact" (key fields only), or "summary" (counts and IDs only). Default: compact save_to_file: If True, saves full results to a temp file and returns the path for jq processing

Returns: JSON string with the organization's flexible assets

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
page_sizeNo
save_to_fileNo
output_formatNocompact
organization_idYes
include_archivedNo
flexible_asset_type_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full behavioral burden. It discloses pagination parameters, archived filtering, output_format behaviors, and the save_to_file side effect of writing to a temp file and returning its path. It stops short of covering permissions, rate limits, or error behavior, but it gives enough for a safe read-oriented call.

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 front-loaded with a one-line purpose and then uses a clean Args/Returns structure where each parameter has exactly one explanatory line. There is no filler or repetition of schema defaults beyond what adds clarity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has 7 parameters)Skip and only 1 required, with no annotations and a 0% schema description coverage. The description covers all parameters, pagination constraints, output format options, the save_to_file path, and the return type. Combined with the existing output schema, this is enough for an agent to invoke the tool correctly.

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

Parameters5/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, and it does. Every parameter gets meaningful prose: organization_id is the required scope, flexible_asset_type_id is a filter, page starts at 1, page_size max is 1000, output_format lists all valid values, and save_to_file explains the temp-file behavior.

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 opens with a specific verb and resource: 'Get all flexible assets for an organization.' This clearly separates it from siblings like get_flexible_asset (single asset) and search_flexible_assets (search behavior), and the organization scope distinguishes it from list_flexible_assets.

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 use when an agent needs organization-scoped flexible assets, and it clearly states the required organization_id. However, it never explicitly tells the agent when to prefer this over list_flexible_assets, search_flexible_assets, or get_flexible_asset, nor does it state when not to use it.

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