Skip to main content
Glama
bigl34

inFlow Inventory MCP Server

by bigl34

get_operation_type

Retrieve a single manufacturing operation type by ID from inFlow Inventory to inspect its production details.

Instructions

Get one manufacturing operation type.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
operationTypeIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.4.0-alpha.2

TDQS

C2.7/5.0
Behavior2/5

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

With no annotations provided, the description carries the full behavioral burden and falls well short: it says nothing about read-only safety, error behavior for an unknown ID, permissions, or what the returned operation type contains. Only the fact that it is a singular fetch is inferable.

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?

A single, front-loaded sentence with zero filler or repetition. It is efficient, though arguably too terse to be useful rather than genuinely well-structured.

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 lookup tool with an undocumented required parameter, no annotations, and no output schema, the description is too thin. It does not explain what a 'manufacturing operation type' is, how to obtain the ID, or what the caller receives.

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?

Schema description coverage is 0% for the one required parameter, operationTypeId, and the description never mentions it or explains its format/source. The agent must infer that the 'one' operation type is identified by an ID rather than by name or other key.

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?

States a specific verb ('Get') and resource ('one manufacturing operation type'), so the scope (single vs. collection) is clear. However, it never names its obvious sibling list_operation_types, so the agent gets no explicit differentiation from the list variant.

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 versus list_operation_types, nor any prerequisite (e.g., needing an ID obtained from the list call). The single-retrieval shape implies usage but nothing is stated.

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