Skip to main content
Glama
TECPabs

Snipe-IT MCP Server

by TECPabs

snipeit_hardware_checkout

Check out an IT asset to a user, location, or another asset. Specify assignee type and ID, set an expected check-in date, and add a note.

Instructions

Check out an asset to a user, location, or another asset

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesAsset ID
noteNoOptional checkout note
assigned_userNoUser ID to assign to
assigned_assetNoAsset ID to assign to
checkout_to_typeYesAssignee type
expected_checkinNoExpected check-in date (YYYY-MM-DD)
assigned_locationNoLocation ID to assign to

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior2/5

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

With no annotations, the description must fully disclose behavioral traits, but it only states the action and target types. It does not mention side effects (e.g., changing the asset's assignment or status), permissions required, reversibility, or what the response contains, which is a significant gap for a mutation tool.

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 or repetition. It states the verb, resource, and targets efficiently, earning its place without extraneous detail.

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?

The tool has seven parameters and no annotations or output schema, yet the description omits important contextual details such as the conditional relationship between checkout_to_type and the assigned_* fields, and the state-changing behavior. The schema covers parameter names and types, but the description does not help an agent understand how to combine parameters correctly or what the operation does beyond the literal action.

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?

Schema coverage is 100%, so the schema already documents all parameters, giving a baseline of 3. The description's mention of 'user, location, or another asset' echoes the enum and assigned_* fields but adds no new meaning beyond what the schema already provides.

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 ('Check out') and names the resource ('an asset') along with the three assignee types (user, location, another asset). This clearly differentiates the tool from siblings like checkin, list, get, create, and update, so an agent can identify it without opening the schema.

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 phrasing 'Check out an asset to...' implies when to use the tool, but there is no explicit when-to-use or when-not-to-use guidance. It does not name alternatives such as checkin or explain conditions that would select a different tool, leaving usage to be inferred from the operation name.

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