Skip to main content
Glama
TECPabs

Snipe-IT MCP Server

by TECPabs

snipeit_manufacturers_get

Retrieves manufacturer details by ID from Snipe-IT. Use this to fetch specific manufacturer information for asset management.

Instructions

Get a manufacturer by ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.7/5.0
Behavior2/5

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

There are no annotations to communicate safety or side effects, so the description carries the burden of behavioral context. 'Get' suggests a read operation, but it does not disclose whether the operation is strictly read-only, what error behavior exists, whether authentication is needed, or what a requestor should expect on failure.

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

Conciseness4/5

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

The description is a single short sentence with no filler. It puts the core purpose up front, but it is under-specified in useful surrounding context rather than being optimally scoped.

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 simple single-parameter getter the description is usable, but with no annotations, no output schema, and no sibling differentiation, it does not fully equip an agent to know what it will receive, when to prefer it, or what requestor constraints apply.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The only parameter, 'id', is documented in the schema with type number and required true, and the description merely restates that it is looked up by ID. This adds minimal semantic value beyond the schema's own property name and does not explain the origin/meaning of the ID, whether it is a database ID or a custom code, or expected value format.

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 action and resource: get a single manufacturer by ID. It is not a tautology and it is readily distinguishable from a list-style tool like snipeit_manufacturers_list, though it does not explicitly mention that distinction in words.

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 choose this tool over alternatives, when not to use it, or what circumstances make it appropriate. The phrase 'by ID' weakly implies it is for known-ID lookups, but the description does not state this or contrast it with sibling lookup tools.

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