Skip to main content
Glama
placraftic

@placraftic/mcp-server

by placraftic

list_qualities

Retrieve configured 3D printing qualities and slicing profiles, filtering by active status or technology, to review layer heights, nozzle diameter, speed modes, and infill.

Instructions

List configured 3D printing qualities and slicing profiles (layer heights, nozzle diameter, speed modes, infill)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
activeOnlyNoWhen true, only returns active printing qualities
technologyNoFilter qualities by technology code (e.g. 'fdm', 'sla', 'sls')

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior2/5

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

Annotations are absent, so the description must carry the full behavioral burden and does not: it never states this is a read-only operation, says nothing about pagination, ordering, or result size, and gives no hint of the return shape beyond naming a few fields.

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 no filler; the parenthetical field list is dense but earns its place by telling the agent what a 'quality' record actually contains.

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 two-optional-parameter list tool with no output schema, the description plus schema cover the essentials: what is listed, what fields it holds, and how to filter. Only return-format and pagination details are missing, which are minor here.

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?

Both parameters are fully documented in the schema (activeOnly, technology with example codes), so the schema does the heavy lifting. The description adds no filtering behavior or default semantics beyond what the schema already provides.

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 (List) and resource (3D printing qualities and slicing profiles) and enumerates the fields those records carry. It is clearly separable from get_quality and list_materials by name, though it never explicitly says so.

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 when-to-use guidance, no prerequisites, and no mention of the singular get_quality sibling for fetching one profile. The parenthetical content list implies what you get back but not when to reach for this tool.

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