Skip to main content
Glama
jameshgordy

Snipe-IT MCP Server

by jameshgordy

manage_accessories

Destructive

Create, retrieve, update, and delete accessory records in Snipe-IT, managing quantity-based items like cables and adapters to keep inventory data accurate.

Instructions

Manage Snipe-IT accessories with CRUD operations.

Accessories are quantity-based items (cables, adapters, peripherals) that can be checked out to users. Unlike assets, accessories are tracked by quantity rather than individually.

Operations:

  • create: Create a new accessory (requires accessory_data with name, qty, and category_id)

  • get: Retrieve a single accessory by ID

  • list: List accessories with optional pagination and filtering

  • update: Update an existing accessory (requires accessory_id and accessory_data)

  • delete: Delete an accessory (requires accessory_id)

Returns: dict: Result of the operation including success status and data

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sortNoField to sort by (for list action)
limitNoNumber of results to return (for list action)
orderNoSort order (for list action)
actionYesThe action to perform on accessories
offsetNoNumber of results to skip (for list action)
searchNoSearch query (for list action)
accessory_idNoAccessory ID (required for get, update, delete)
accessory_dataNoAccessory data (required for create, optional for update)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Behavior3/5

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

Annotations already declare destructiveHint=true and readOnlyHint=false, so the description aligns with these. It adds the return format ('dict: Result ...') and the fact that delete is included, but it does not disclose deeper behavioral traits like irreversible changes, required permissions, or error handling. Since annotations cover the safety profile, this is adequate but not rich.

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 summary, a brief contextual note, a bulleted list of operations, and a return description. Every sentence adds value without redundancy.

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?

The description covers all five CRUD actions and their essential parameter requirements, and mentions the return type. An output schema exists, so detailed return fields are unnecessary. It lacks explicit notes on pagination defaults or sorting behavior, but those are documented in the input schema.

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?

The schema has 100% parameter coverage, so baseline is 3. However, the description adds critical requirement details: it specifies that create action requires accessory_data with name, qty, and category_id, which is not marked as required in the schema. This extra guidance significantly helps the agent form correct calls.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool 'Manage Snipe-IT accessories with CRUD operations' and enumerates all actions (create, get, list, update, delete), making the purpose unmistakable. It also distinguishes accessories from assets by noting they are quantity-based, but it does not explicitly differentiate from the sibling tool 'accessory_operations'.

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 provides contextual guidance by explaining that accessories are quantity-based and can be checked out to users, implying when this tool is appropriate. It also gives per-action requirement hints (e.g., create requires name, qty, category_id), but it does not explicitly compare to alternatives or state when not to use this tool.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jameshgordy/snipeit-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server