Skip to main content
Glama
TECPabs

Snipe-IT MCP Server

by TECPabs

snipeit_hardware_create

Create a new hardware asset in Snipe-IT by providing asset tag, status, model, and optional details like serial, location, and purchase cost.

Instructions

Create a new hardware asset

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoAsset name
notesNoNotes
serialNoSerial number
model_idYesAsset model ID
asset_tagYesUnique asset tag
status_idYesStatus label ID
company_idNoCompany ID
location_idNoLocation ID
purchase_costNoPurchase cost
purchase_dateNoPurchase date (YYYY-MM-DD)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.2/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 of behavioral disclosure. It only reveals that this is a mutation operation, but does not mention uniqueness of asset_tag, validation behavior, permission requirements, or what happens if required IDs are invalid.

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 a single front-loaded sentence with no filler. Every word contributes to stating the core operation.

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?

Although the schema covers parameters, there is no output schema, no annotations, and no description of return values, side effects, or operational constraints. For a create tool with 10 parameters and several mutation siblings, this is under-specified.

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?

The input schema already describes all 10 parameters, so the baseline is 3. The description adds no parameter-level meaning, but the schema fully covers names, types, and required fields.

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 specific action 'Create' and the resource 'hardware asset,' which clearly distinguishes it from sibling tools like snipeit_hardware_update, snipeit_hardware_checkin, and snipeit_hardware_list. The intent is immediately unambiguous.

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?

There is no guidance on when to use this tool versus alternatives, no prerequisites, and no exclusions. The only signal is the verb 'Create,' which implies adding a new asset but does not help an agent decide between this and related hardware operations.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.