Skip to main content
Glama

SimplyPrint: 3D Print Farm Management

list_filaments

Read-onlyIdempotent

List filament spools with optional filters and sorting. Accounts often have hundreds of spools, so ALWAYS pair sort_by with a limit. Use sort_by=last_used + limit=10 for "most used / most popular spool" questions. Use sort_by=created + limit=N for recently added. Use sort_by=left for emptiest/fullest. Filters (material_type/brand/color) are case-insensitive substring matches. If the user names a specific spool by id or 4-character short id (e.g. "T2SO"), call get_filament instead — do NOT list and grep. Amount-remaining fields: report weight from leftGrams/totalGrams (grams) and percentLeft (%), NOT the raw total/left which are internal filament LENGTH in mm. density (g/cm³) is the value used for the gram conversion; densityIsEstimated=true means the spool has no material profile so a default density was assumed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
brandNoBrand name substring
colorNoColor substring — matches hex, name, or color group
emptyNotrue = only empty spools; false = only non-empty spools
limitNoCap on number of spools returned after sorting/filtering. Use this with sort_by to grab e.g. the 3 newest.
compactNoKeep at default true. Returns minimal data tuned for AI context. Only set to false if you specifically need fields the compact view drops, and then pair with limit to keep the response small.
sort_byNoField to sort by. Defaults to created (newest first).
assignedNotrue = only spools assigned to a printer; false = only unassigned spools
sort_dirNoSort direction. Defaults to desc.
printer_idNoOnly spools assigned to this printer id
material_typeNoMaterial type substring (e.g. "PLA", "PETG")

TDQS

A5/5.0
Behavior5/5

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

The description goes far beyond the annotations by revealing critical behavioral details: filters are case-insensitive substring matches; amount-remaining must be reported from leftGrams/totalGrams and percentLeft, not raw total/left which are internal length in mm; density is used for gram conversion and densityIsEstimated indicates a default density assumption. These insights are not available from annotations or the schema, adding substantial transparency. No contradiction with the readOnly/idempotent annotations.

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?

Every sentence earns its place. The description is dense but well-structured: purpose first, then usage patterns, then the get_filament fallback caveat, and finally the unit/conversion warnings. No filler or repetition of schema content. It packs maximum useful guidance into a compact block appropriate for a complex 10-parameter tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 10 parameters and no output schema, the description covers the essential context: how to handle large result sets (limit+sorted), the exact fields to report for remaining amount, the meaning of densityIsEstimated, and the compact default. It addresses key edge cases (specific spool lookup, unit conversion) that an agent must know to use the tool correctly. This is a complete, production-ready description.

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?

Even with 100% schema coverage, the description enriches parameter meaning. It explains the intended use of sort_by with limit, states that filters are case-insensitive substring matches, and clarifies the semantic distinction between compact modes and the raw vs computed fields (leftGrams vs raw total/left). This is exactly the type of contextual parameter insight the schema cannot convey.

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 opens with a clear, specific verb+resource statement: 'List filament spools with optional filters and sorting.' This precisely defines the tool's function and scope. It also distinguishes this tool from its sibling get_filament, which is explicitly noted as the alternative when a specific spool is named, eliminating ambiguity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Usage guidance is exemplary. It provides explicit 'ALWAYS pair sort_by with a limit' and gives concrete patterns for common queries (sort_by=last_used+limit=10 for most used, sort_by=created+limit=N for recent, sort_by=left for emptiest/fullest). It also clearly states when NOT to use this tool: 'If the user names a specific spool by id or 4-character short id... call get_filament instead.' This is exactly the kind of alternative selection guidance the dimension asks for.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.1/5.0
Disambiguation3/5

Most tools are clearly separated by resource and action, but several overlapping queue-related tools exist—get_next_queue_item vs get_next_queue_items_for_printers, list_queue vs list_pending_queue_items, and inspect_printer_queue—which could cause misselection. list_custom_fields vs list_custom_fields_for and add_to_queue vs create_print_job add further ambiguity.

Naming Consistency4/5

Names overwhelmingly follow a verb_noun snake_case pattern with consistent resource nouns like print_job, queue_item, folder, and filament. Minor inconsistencies exist, such as add_to_queue vs create_folder/create_print_job, save_queue_group vs update/create, and the slightly odd home_printer and send_back_for_revision.

Tool Count1/5

With 74 tools, this is far beyond the recommended MCP server size and makes the toolset unwieldy to navigate, even for a broad domain. This clearly falls into the extreme 50+ tool category.

Completeness3/5

Core operational workflows—queue, print jobs, files, filament, and printer control—are well represented. However, printer lifecycle management is missing (no add/update/delete printer), and maintenance management is limited to a read-only dashboard with no corresponding actions.