Skip to main content
Glama

SimplyPrint: 3D Print Farm Management

add_to_queue

Queue a file for printing. Pick exactly one file source: fileId (hex hash from the files.simplyprint.io Upload endpoint) or filesystem (UserFile.uid of an existing library file). Supports PRINT_QUEUE custom fields and a tags object for material colour, nozzle, build plate, or custom tags (for example tags={"material":[{"color":"Red","hex":"#FF0000","nozzle":0,"ext":0}]}).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagsNoTag-assignment object. Use material for colour, for example {"material":[{"color":"Red","hex":"#FF0000","nozzle":0,"ext":0}]}; use custom or tag_ids for custom tag IDs, nozzleData for nozzle positions, bedType for the build plate, and detach_tag_ids to remove custom tags.
groupNoQueue group id to add the item to. Use list_queue_groups to discover available groups.
amountNoNumber of copies to queue. Default 1.
fileIdNoHex bucket hash returned by the files.simplyprint.io Upload endpoint. Use this when the file was uploaded via the API (recommended for integrations).
positionNoWhere to insert: "top", "bottom", or a 1-based numeric position.
filesystemNoUserFile.uid of an existing library file (use list_files to discover). Either numeric id or UID string is accepted.
for_groupsNo
for_modelsNo
for_printersNo
custom_fieldsNoPRINT_QUEUE custom fields for the new queue item. Each entry: {customFieldId: string uuid, value: one-of {string, number, boolean, date, options[]}}.

TDQS

A4.1/5.0
Behavior3/5

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

Annotations indicate this is a non-idempotent, non-read-only, non-destructive write, which is consistent with adding a queue item. The description explains the tags object format and the two file-source modes, which adds useful context beyond the raw annotations, but it doesn't mention that the operation may require write permissions or what happens if both sources are provided, despite the 'pick exactly one' rule.

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 paragraph but is front-loaded with the core action and the critical 'pick exactly one' constraint. The tags example is useful even if a bit dense. Notably, the schema itself already contains a detailed tags description, so the description credits itself for the example without being overly redundant.

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?

Given the lack of an output schema and the presence of 10 parameters including a complex nested tags object, the description does a solid job of clarifying the two file-source options and the tags structure. It only misses explicit mention of the 'for_groups', 'for_models', and 'for_printers' string parameters in the prose, but those are documented in the schema, so completeness is strong overall.

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

Parameters4/5

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

The schema covers roughly 70% of parameters, and the description adds value by explaining the tags object with a concrete example and clarifying that fileId comes from the Upload endpoint while filesystem corresponds to a UserFile.uid. The description reinforces the mutually exclusive file-source choice and provides the key example for material colour tag assignment.

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?

States a specific verb ('Queue') and resource ('a file for printing'), and immediately differentiates from siblings by naming the two mutually exclusive file sources (fileId vs filesystem). It also references the PRINT_QUEUE custom fields and tags object, which distinguishes it from related queue operations like update_queue_item or remove_from_queue.

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

Usage Guidelines4/5

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

The description clearly says to pick exactly one file source between fileId and filesystem, and both schema descriptions anchor those sources to specific endpoints (files.simplyprint.io Upload; list_files). However, it doesn't explicitly state when to prefer this over sibling operations like approve_queue_item or update_queue_item, so exclusion guidance is partial.

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.