Skip to main content
Glama
jamesdeane2

MCP IT Glue Server

by jamesdeane2

create_configuration

Create a new device/asset configuration in IT Glue by providing organization, name, and type, with optional details like hostname, IP, and serial number.

Instructions

Create a new configuration (device/asset) in IT Glue.

Args: organization_id: Organization ID (required) name: Configuration name (required) configuration_type_id: Configuration type ID (required) hostname: Device hostname primary_ip: Primary IP address mac_address: MAC address serial_number: Serial number asset_tag: Asset tag configuration_status_id: Configuration status ID manufacturer_id: Manufacturer ID model_id: Model ID operating_system_id: Operating system ID operating_system_notes: OS notes notes: General notes

Returns: JSON string with the created configuration

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
notesNo
hostnameNo
model_idNo
asset_tagNo
primary_ipNo
mac_addressNo
serial_numberNo
manufacturer_idNo
organization_idYes
operating_system_idNo
configuration_type_idYes
operating_system_notesNo
configuration_status_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It states the obvious side effect ('Create') and return value, but does not disclose permissions, validation rules, whether IDs must pre-exist, or any failure/partial-write behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The opening one-liner is concise and meaningful, but the long Args block largely duplicates the input schema's property names and titles. Since the schema already provides this structure, the description spends most of its length repeating structured data rather than adding value.

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 14-parameter create operation with no annotations, this is incomplete. It omits how to obtain the many reference IDs, does not mention that a new organization/config relation may be required, and provides no guidance on preconditions or expected failures despite having many related sibling tools that could supply that context.

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?

With 0% schema description coverage, the description at least lists all 14 parameters with human-readable labels and flags the 3 required ones. However, most entries simply re-state the parameter names and do not add real semantics like ID lookup sources, value formats, or constraints.

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 clearly states a specific action ('Create a new configuration') and resource ('device/asset in IT Glue'), and the word 'new' distinguishes it from update/list/get/search configuration siblings without needing to inspect schemas.

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?

No guidance is given about when to use this tool versus update_configuration, nor about prerequisites such as looking up configuration_type_id, manufacturer_id, model_id, or operating_system_id from reference-data endpoints. The required-parameter list is not usage guidance.

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