Skip to main content
Glama
jamesdeane2

MCP IT Glue Server

by jamesdeane2

create_flexible_asset

Creates a flexible asset in IT Glue for a specified organization and asset type, using field values that match the type's schema. Returns the created asset as JSON.

Instructions

Create a new flexible asset.

Args: organization_id: Organization ID (required) flexible_asset_type_id: Flexible asset type ID (required) traits: Dictionary of field values matching the type's schema. Keys should match field names, values should match field types.

Returns: JSON string with the created flexible asset

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
traitsYes
organization_idYes
flexible_asset_type_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior3/5

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

There are no annotations, so the description carries the behavioral burden. It clearly indicates a mutating creation operation and discloses the return value as a JSON string containing the created asset. It does not mention validation behavior, permission requirements, or what happens when trait values do not match the type schema, but the core behavior is transparent enough for a basic create operation.

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 concise and well-structured: a one-line purpose statement, a compact Args block covering all parameters, and a short Returns line. No filler or redundant information is included, and the most important information is front-loaded.

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 create operation with three required parameters, the description supplies all necessary argument semantics and the return format. The dynamic nature of traits is acknowledged, though the description could be stronger by pointing the agent to sibling tools like get_flexible_asset_type or list_flexible_asset_fields to resolve the trait schema. Overall, an agent has enough information to make a correct call.

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

Parameters4/5

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

Although schema description coverage is 0%, the Args section explicitly documents all three parameters: organization_id, flexible_asset_type_id, and traits. It adds crucial meaning to the generic 'traits' object by explaining that keys are field names and values must match the flexible asset type's schema. It stops short of describing how to discover the exact field names, but it compensates well for the schema's lack of descriptions.

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 uses a specific verb and resource: 'Create a new flexible asset.' This clearly distinguishes it from sibling tools like update_flexible_asset, delete_flexible_asset, list_flexible_assets, and unrelated create_* tools. No ambiguity remains about the operation or target.

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 intended use is implied by 'Create a new flexible asset' and the required arguments, but the description does not explicitly state when to choose this tool over alternatives or mention any exclusions. It provides no guidance about when not to use it or when a different flexible-asset tool is more appropriate.

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