Skip to main content
Glama
TECPabs

Snipe-IT MCP Server

by TECPabs

snipeit_licenses_seats

List all assigned seats for a license to see which users currently hold it.

Instructions

List all seats for a license (who has it assigned)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesLicense ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. 'List' clearly signals a read-only collection operation and 'who has it assigned' hints at the result content, but nothing is said about pagination, response format, authentication requirements, or error behavior. This is adequate but minimal.

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 wasted words. It states the action, resource, and output meaning in under ten words, making it easy to parse quickly.

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 one-parameter lookup tool, the description is nearly complete: the agent knows what to do, which ID to pass, and what the result represents. The only gaps are minor and expected for a simple list endpoint, such as pagination or detailed seat fields, and there is no output schema to compensate.

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 schema already provides 100% coverage by describing the single required parameter 'id' as 'License ID.' The description adds no new parameter semantics beyond reiterating that seats belong to a license, so it stays at the baseline score.

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: 'List all seats for a license.' The parenthetical '(who has it assigned)' clarifies the output's meaning and distinguishes this from sibling tools like snipeit_licenses_list and snipeit_licenses_get, which operate on licenses themselves.

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 use case is implied: this is the tool to use when you need the assignment information for a license. However, it does not explicitly state when not to use it or name alternative tools, leaving the agent to infer the routing from context.

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