Skip to main content
Glama
jamesdeane2

MCP IT Glue Server

by jamesdeane2

search_models

Search for hardware models by name, optionally filter by manufacturer, and retrieve matching model data as JSON for IT asset management.

Instructions

Search for models by name.

Args: query: Search query string manufacturer_id: Optional manufacturer filter limit: Maximum number of results (default 10, max 100)

Returns: JSON string with matching models

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
queryYes
manufacturer_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations, the description must carry the disclosure burden. It clearly indicates a read-style search and notes that output is a JSON string, but it doesn't mention matching behavior (exact vs partial), pagination, or any access constraints.

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 compact and front-loaded with the purpose, followed by a clear Args section and Returns line. Every line earns its place, though the parameter explanations could be slightly tighter without losing value.

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 simple 3-parameter search tool, the description covers all inputs, defaults, limits, and the return type, and an output schema exists to fill in response details. It lacks only search-behavior nuances and usage differentiation, which are captured by the usage and behavioral dimensions.

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

Parameters5/5

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

Schema description coverage is 0%, but the description fully compensates by explaining all three parameters: query, optional manufacturer filter, and limit with default and maximum (100). It adds the max limit constraint that the schema does not expose, making the arguments actionable.

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 starts with 'Search for models by name,' a specific verb and resource, so an agent knows exactly what operation this is. It doesn't explicitly distinguish this from sibling resource searches like search_manufacturers or list_models, but the unique 'models' resource makes confusion unlikely.

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 instead of alternatives such as list_models, list_manufacturers, or search_manufacturers. The description only lists arguments and gives no context about use cases or exclusions.

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

Deploy Server

Other Tools