Skip to main content
Glama
zvmzaretsky

fabtally-mcp

by zvmzaretsky

FabTally MCP Server

The first MCP server for real FDM 3D-printing slicing, quoting, and DFM / printability analysis. Every other 3D-printing MCP just drives a printer (OctoPrint, Bambu). None of them slice, quote, or run design-for-manufacturability checks — FabTally does.

It fronts the FabTally agent API (https://fabtally.com), which runs a production slicing engine against 12 calibrated FDM printer profiles and 12 filament materials, and exposes it as MCP tools so any MCP-capable agent (Claude Desktop, Cursor, custom agents) can discover and call it.

  • Two-angle design. A human at a keyboard (Claude Desktop, ChatGPT Desktop — no crypto wallet) gets real answers with zero payment from the everyday tools: list_printers, check_printability, analyze_model, get_print_quote. These call FabTally's free, rate-limited public endpoints. An autonomous agent with a wallet gets the heavier/exact tools — optimize_orientation, slice_model, and the full (full=true) DFM report — metered over x402 (USDC on Base). With no payment supplied, those return the x402 challenge (price, network, asset, payTo) so the calling agent knows the cost and can pay and retry.

  • This server holds no private key and persists no models. It only relays calls to https://fabtally.com/...; uploaded models are streamed to the slicer, never stored.

Tools

Tool

Price

What it does

list_printers

free

Live 12-printer fleet (id, bed, nozzle), 12 materials, and x402 pricing tiers. Call this first.

check_printability

free / premium $0.01

DFM/printability report. Free geometry preview: printable verdict, watertight, wall-thickness estimate, overhang/support heuristic, fits-on-bed. full=true → premium, x402-metered full report with exact slice-derived support & material deltas.

analyze_model

free

Geometry preview, no payment: bounding box (mm), volume (cm³), triangle count, watertight, fits-on-bed, plus a printable-so-far verdict as a bonus.

get_print_quote

free (rate-limited)

Slicer-accurate FDM price quote: print time, filament grams, priced quote with volume discounts. Supports optional bring-your-own pricing (currency, machine_rate_per_hour, margin, setup_fee, minimum_price, material_cost_per_kg, markup_percent) — omit for FabTally's hobbyist defaults.

optimize_orientation

premium, x402-metered $0.02

Slices up to 4 orientations and recommends the one using the least support material (exact), with savings vs as-is. For autonomous agents with a wallet — unlimited, machine-speed.

slice_model

premium, x402-metered $0.005–$0.02

Full slice on any printer: time, filament, layers, geometry. Optional preview PNG (+$0.005) and/or G-code (+$0.01). For autonomous agents with a wallet.

The free tools are rate-limited public endpoints — fine for a human exploring a design, not for high-volume or production integrations. For unlimited, machine-speed access, an autonomous agent with a wallet can pay per call via x402: the premium tools above, or check_printability with full=true for the exact (slice-derived) DFM report.

Related MCP server: PrusaMCP

The 12 printers

id

printer

bed X×Y×Z (mm)

nozzle

elegoo-neptune4-max

Elegoo Neptune 4 Max

420×420×480

0.4

bambu-a1

Bambu Lab A1

256×256×256

0.4

bambu-a1-mini

Bambu Lab A1 mini

180×180×180

0.4

bambu-p1s

Bambu Lab P1S

256×256×250

0.4

bambu-x1c

Bambu Lab X1 Carbon

256×256×250

0.4

prusa-mk4

Prusa MK4

250×210×220

0.4

prusa-mini

Prusa MINI

180×180×180

0.4

ender3-v3

Creality Ender-3 V3

220×220×250

0.4

creality-k1

Creality K1

220×220×250

0.4

creality-k1-max

Creality K1 Max

300×300×300

0.4

voron-24-350

Voron 2.4 350

350×350×325

0.4

anycubic-kobra2

Anycubic Kobra 2

220×220×250

0.4

Materials: pla, pla-cf, petg, petg-cf, abs, abs-cf, asa, asa-cf, nylon, pc, pet, tpu (PLA/PETG/ABS/ASA + carbon-fiber variants, Nylon, PC, PET, TPU). list_printers always returns the authoritative live list.

Supplying a model file

MCP tools can't take raw file uploads, so every model-consuming tool accepts the model two ways — pick one:

  • model_url (preferred for local files) — a public https URL to an STL / 3MF / OBJ / PLY / STEP file. The server fetches it. (Try https://fabtally.com/sample-cube-20mm.stl.) Got a file on your machine — Claude Desktop, ChatGPT Desktop? Drop it at https://fabtally.com/upload (no account, drag-and-drop) to get a short-lived URL back (auto-deletes in ~2 hours, nothing kept), then pass that URL as model_url. That page also has a "Get quote now" button for an instant human-readable quote with zero MCP involved.

  • model_base64 + filename — the raw file bytes, base64-encoded, plus a filename (e.g. "cube.stl") so the file type is known. Only reliable for small files (roughly <50KB). MCP clients truncate large inline tool-call arguments, so a real STL sent this way can silently arrive as a corrupted fragment and produce garbage results (wrong dimensions, bogus quotes) with no error. For anything bigger, use model_url via the upload bridge above.

Example tool calls

// 1) Discover printers/materials/pricing (free)
{ "name": "list_printers", "arguments": {} }

// 2) Free printability check on a hosted model
{ "name": "check_printability",
  "arguments": { "model_url": "https://fabtally.com/sample-cube-20mm.stl" } }

// 3) Full DFM report (premium, x402-metered; returns x402 challenge unless x_payment is supplied)
{ "name": "check_printability",
  "arguments": { "model_url": "https://example.com/bracket.stl",
                 "full": true, "printer": "bambu-p1s", "material": "petg" } }

// 4) Price quote, base64 model, 10 parts (free, real result, no payment)
{ "name": "get_print_quote",
  "arguments": { "model_base64": "<...>", "filename": "part.stl",
                 "material": "pla", "quantity": 10 } }

// 5) Least-support orientation (premium, x402-metered, $0.02)
{ "name": "optimize_orientation",
  "arguments": { "model_url": "https://example.com/handle.stl", "printer": "prusa-mk4" } }

// 6) Slice with a preview PNG (premium, x402-metered tier, $0.01)
{ "name": "slice_model",
  "arguments": { "model_url": "https://example.com/gear.stl",
                 "printer": "voron-24-350", "material": "abs",
                 "quality": "standard", "include_preview": true } }

Install

cd fabtally-mcp-server
npm install

Run (stdio — primary)

node index.js
# or, after `npm install -g .`:  fabtally-mcp

The server speaks MCP over stdio. Point your MCP client at it.

Claude Desktop / MCP client config

{
  "mcpServers": {
    "fabtally": {
      "command": "node",
      "args": ["/absolute/path/to/fabtally-mcp-server/index.js"]
    }
  }
}

Run (Streamable HTTP — optional)

MCP_HTTP_PORT=8103 node http.js
# POST MCP JSON-RPC messages to http://127.0.0.1:8103/mcp   (stateless)

Configuration

Env var

Default

Purpose

FABTALLY_BASE

https://fabtally.com

Base origin of the FabTally API.

MCP_HTTP_PORT

8103

Port for the optional HTTP transport (http.js).

MCP_HTTP_HOST

127.0.0.1

Bind address for the HTTP transport.

How paid calls work (x402)

  1. Call a paid tool (or check_printability with full: true) without x_payment. You get { "payment_required": true, "http_status": 402, "challenge": { ... } } containing the x402 accepts entry (scheme exact, network eip155:8453 = Base, asset USDC, atomic amount, payTo).

  2. Build an x402 payment authorization (EIP-3009 transferWithAuthorization to payTo) for that entry using your x402 client / wallet.

  3. Call the tool again with the resulting token in the x_payment argument. The server forwards it as the X-PAYMENT header and returns the actual result.

Free discovery is always at GET https://fabtally.com/agent/overview; the OpenAPI contract at https://fabtally.com/openapi.json; x402 discovery at https://fabtally.com/.well-known/x402.

Test

node smoke-test.mjs   # lists tools, calls list_printers + check_printability, checks paid 402s

License

MIT · Sunstone Soft · https://fabtally.com

Available Tools

6 tools
analyze_modelAnalyze 3D model geometryAInspect

PAID ($0.002 USDC on Base, x402). Geometry only, no slice: bounding box (mm), volume (cm3), triangle count, watertight flag, and a fits-on-bed check for an optional printer. Cheap sanity check for an STL/3MF/OBJ model. Without payment, returns the x402 challenge (price + how to pay).

ParametersJSON Schema
NameRequiredDescriptionDefault
printerNo3D printer id from list_printers (elegoo-neptune4-max, bambu-a1, bambu-a1-mini, bambu-p1s, bambu-x1c, prusa-mk4, prusa-mini, ender3-v3, creality-k1, creality-k1-max, voron-24-350, anycubic-kobra2). Default elegoo-neptune4-max.
filenameNoFile name incl. extension, e.g. 'bracket.stl'. Sets the file type; required with model_base64.
model_urlNoPublic https URL to the 3D model file (STL, 3MF, OBJ, PLY, or STEP). The server fetches it. Use this OR model_base64.
x_paymentNox402 payment payload (base64) for a PAID tool. If supplied it is forwarded as the X-PAYMENT header to settle the call and return the real result instead of a 402 challenge. Omit to get the price challenge first.
model_base64NoBase64-encoded model file bytes (STL/3MF/OBJ/PLY/STEP), an alternative to model_url for inline data. Provide `filename` too.

TDQS

A4.5/5.0
Behavior5/5

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

With no annotations, the description fully discloses the paid nature ($0.002 USDC on Base, x402), payment flow (returns challenge without payment), and that it only performs geometry analysis (no slicing, no side effects). This exceeds typical transparency for read-only tools.

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?

Three sentences tightly packed with essential info: payment, outputs, and payment behavior. No fluff; every sentence adds value. Front-loaded with the most critical fact (PAID).

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?

The tool has no output schema and no annotations, yet the description lists the expected return metrics (bounding box, volume, triangle count, watertight flag, fits-on-bed check) and explains the payment challenge flow. This covers the key context needed to decide when and how to invoke the tool, despite missing explicit error handling details.

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?

Schema coverage is 100% for all 5 parameters, so baseline is 3. The description adds minor context (e.g., 'optional printer' for fits-on-bed check, 'without payment' for x_payment), but most parameter meaning is already in the schema. No significant compensation needed.

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 clearly states the tool analyzes 3D model geometry with specific outputs (bounding box, volume, triangle count, watertight flag, fits-on-bed check). It explicitly distinguishes itself from slicing ('Geometry only, no slice') and identifies as a sanity check, setting it apart from sibling tools like slice_model.

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 implies usage as a cheap sanity check before printing and explicitly says 'no slice', which guides away from slice_model. However, it does not explicitly compare with check_printability or optimize_orientation, so it lacks full when-not/alternatives guidance.

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

check_printabilityCheck 3D-print printability (DFM)AInspect

3D printing DFM / design-for-manufacturability & printability check for an STL/3MF/OBJ model. Default (full=false) is FREE: a geometry-only preview — printable verdict (yes / with-warnings / no), watertight/manifold check, dimensions & volume, fits-on-bed, a wall-thickness estimate vs the 0.4mm nozzle, and an overhang/support heuristic. No payment needed. Set full=true for the PAID full DFM report ($0.01 USDC on Base, x402): everything above PLUS EXACT support-material grams/time and infill material-saving deltas from REAL OrcaSlicer slices, every field labelled exact vs heuristic. Without payment the paid mode returns the x402 challenge (price + how to pay); pass x_payment to settle. Great before quoting or slicing to catch thin walls, non-watertight meshes, and support-heavy geometry.

ParametersJSON Schema
NameRequiredDescriptionDefault
fullNofalse (default) = FREE geometry-only preview via /agent/v1/dfm-preview. true = PAID full DFM report ($0.01) with exact slice-derived support & material deltas via /agent/v1/dfm (returns x402 challenge unless x_payment is supplied).
printerNo3D printer id from list_printers (elegoo-neptune4-max, bambu-a1, bambu-a1-mini, bambu-p1s, bambu-x1c, prusa-mk4, prusa-mini, ender3-v3, creality-k1, creality-k1-max, voron-24-350, anycubic-kobra2). Default elegoo-neptune4-max.
qualityNoPrint quality preset: draft 0.28mm | standard 0.20mm | fine 0.12mm layer height.
filenameNoFile name incl. extension, e.g. 'bracket.stl'. Sets the file type; required with model_base64.
materialNoFilament/material id (pla, pla-cf, petg, petg-cf, abs, abs-cf, asa, asa-cf, nylon, pc, pet, tpu). Default pla.
model_urlNoPublic https URL to the 3D model file (STL, 3MF, OBJ, PLY, or STEP). The server fetches it. Use this OR model_base64.
x_paymentNox402 payment payload (base64) for a PAID tool. If supplied it is forwarded as the X-PAYMENT header to settle the call and return the real result instead of a 402 challenge. Omit to get the price challenge first.
layer_heightNoExplicit layer height in mm (0.04-0.6); overrides `quality` if both are given.
model_base64NoBase64-encoded model file bytes (STL/3MF/OBJ/PLY/STEP), an alternative to model_url for inline data. Provide `filename` too.
infill_percentNoSparse infill density percent (0-100). Used for the material-saving delta in a full DFM report.

TDQS

A4.4/5.0
Behavior5/5

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

With no annotations, the description fully discloses free vs. paid behavior, the $0.01 USDC cost, x402 challenge flow, the difference between exact and heuristic fields, and how x_payment settles the challenge. This is exceptionally transparent about side effects and requirements.

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 dense and front-loaded with its core purpose. Every sentence contributes unique information about free/paid features, payment, or use case, though the length is considerable; it is concise for the tool's complexity but not maximally streamlined.

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?

For a complex tool with 10 optional parameters and no output schema, the description covers both free and paid modes, expected results, payment challenge behavior, and intended usage context. It is sufficiently complete for an agent to select and invoke the tool correctly.

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?

Schema coverage is 100%, so the baseline is 3. The description adds narrative context for 'full' and 'x_payment' but largely repeats what the schema already states, adding little new parameter-level meaning.

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 clearly identifies a specific verb ('check') and resource ('3D-print DFM/printability... model') and lists concrete deliverables: printable verdict, watertight check, dimensions, wall-thickness, overhang heuristic. It distinguishes itself from siblings by focusing on DFM/printability rather than slicing or quoting.

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?

It explicitly says 'Great before quoting or slicing to catch thin walls, non-watertight meshes, and support-heavy geometry,' which gives clear timing and intent. However, it does not name alternatives or explicitly state when not to use this tool, so it falls short of a 5.

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

get_print_quoteGet a 3D printing price quoteAInspect

PAID ($0.005 USDC on Base, x402). Slicer-accurate FDM 3D-printing price quote from a real OrcaSlicer slice (not an estimate): print time, filament grams, and a priced quote (material + machine time + setup, with automatic volume discounts). Upload an STL/3MF/OBJ/STEP model. Without payment, returns the x402 challenge (price + how to pay).

ParametersJSON Schema
NameRequiredDescriptionDefault
filenameNoFile name incl. extension, e.g. 'bracket.stl'. Sets the file type; required with model_base64.
materialNoFilament/material id (pla, pla-cf, petg, petg-cf, abs, abs-cf, asa, asa-cf, nylon, pc, pet, tpu). Default pla.
quantityNoNumber of parts (1-10000). Volume discounts apply automatically. Default 1.
model_urlNoPublic https URL to the 3D model file (STL, 3MF, OBJ, PLY, or STEP). The server fetches it. Use this OR model_base64.
x_paymentNox402 payment payload (base64) for a PAID tool. If supplied it is forwarded as the X-PAYMENT header to settle the call and return the real result instead of a 402 challenge. Omit to get the price challenge first.
model_base64NoBase64-encoded model file bytes (STL/3MF/OBJ/PLY/STEP), an alternative to model_url for inline data. Provide `filename` too.

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations provided, the description carries the full transparency burden. It discloses the exact cost ($0.005 USDC on Base), payment method (x402), and non-payment behavior (returns a challenge). It also emphasizes 'not an estimate' to set accuracy expectations. Some error handling details are missing, but core behavioral traits are well covered.

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?

The two sentences deliver all critical information efficiently. The paid status is front-loaded, followed by accuracy claim, outputs, input actions, and the two payment states. Every sentence earns its place with no fluff.

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 no output schema and 6 parameters, the description explains both call modes (unpaid challenge and paid result), expected outputs (time, grams, quote), and supported input formats. It omits PLY from the input list (though schema allows it) and doesn't detail the exact response structure, but for a quote tool this is adequate.

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 already covers all 6 parameters (100% coverage), so baseline is 3. The description adds meaningful context: automatic volume discounts relate to quantity, material affects material + machine time pricing, and x_payment determines whether a challenge or real result is returned. This goes beyond the schema's individual field descriptions.

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 title and description clearly state the tool provides a 3D printing price quote. It specifies that it uses a real OrcaSlicer slice (not an estimate) and lists the exact outputs: print time, filament grams, and a priced quote. This distinguishes it from siblings like check_printability or slice_model.

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 explains the payment workflow: omit x_payment to receive a challenge, include it to settle and get the result. It also tells the user to upload a model. It doesn't explicitly compare to sibling tools, but the purpose is distinct enough that usage context is clear.

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

list_printersList 3D printers, materials and pricingAInspect

FREE. Discovery for FabTally 3D printing: returns the live 12-printer FDM fleet (printer id, human name, bed/build-volume in mm, nozzle diameter), the 12 supported filament materials (PLA, PETG, ABS, ASA, Nylon, PC, TPU + carbon-fiber variants), and the x402 pricing tiers for the paid slice/quote/DFM tools. No payment required. Call this FIRST to choose a printer and material id before quoting, slicing, or a DFM check.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.7/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden. It discloses that the tool is 'FREE' and 'No payment required', returns 'live' data, and specifies exactly what is included. While it does not explicitly state 'read-only', the verb 'returns' implies a safe discovery operation, and the cost/liveness context adds transparency beyond the minimal.

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?

The description is two sentences, front-loaded with 'FREE' and 'Discovery', and every clause adds specific detail about the returned data. There is no filler or repetition.

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?

The description thoroughly details the return payload (12 printers with fields, 12 materials, pricing tiers), explains the 'call first' purpose, and notes cost. Even without an output schema, the description fully compensates by enumerating the exact items and their purpose.

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 input schema is empty, so the baseline is 4. The description adds value by explaining that the tool outputs printer and material IDs specifically for use in other tools, which gives the agent context for parameter selection in subsequent calls, even though this tool itself has no parameters.

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 clearly states the tool's function: it lists the 3D printer fleet, materials, and pricing tiers. It uses the specific verb 'returns' and names the resources, and distinguishes itself from siblings by positioning this as the initial discovery step before quoting, slicing, or DFM checks.

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?

The description explicitly instructs to 'Call this FIRST' to choose printer and material IDs before using quoting, slicing, or DFM check tools. This provides clear when-to-use guidance and differentiates it from downstream sibling tools.

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

optimize_orientationOptimize 3D-print orientation (least support)AInspect

PAID ($0.02 USDC on Base, x402). Orientation optimiser for FDM 3D printing: really slices up to 4 candidate build orientations with automatic supports on the chosen printer and recommends the one that uses the LEAST support material (exact, slice-derived), reporting the filament/support savings vs printing the model as-is. Reduces support waste, print time, and post-processing. Costs more than other tools because it runs multiple real slices. Without payment, returns the x402 challenge (price + how to pay); pass x_payment to settle and get the recommended orientation.

ParametersJSON Schema
NameRequiredDescriptionDefault
printerNo3D printer id from list_printers (elegoo-neptune4-max, bambu-a1, bambu-a1-mini, bambu-p1s, bambu-x1c, prusa-mk4, prusa-mini, ender3-v3, creality-k1, creality-k1-max, voron-24-350, anycubic-kobra2). Default elegoo-neptune4-max.
qualityNoPrint quality preset: draft 0.28mm | standard 0.20mm | fine 0.12mm layer height.
filenameNoFile name incl. extension, e.g. 'bracket.stl'. Sets the file type; required with model_base64.
materialNoFilament/material id (pla, pla-cf, petg, petg-cf, abs, abs-cf, asa, asa-cf, nylon, pc, pet, tpu). Default pla.
model_urlNoPublic https URL to the 3D model file (STL, 3MF, OBJ, PLY, or STEP). The server fetches it. Use this OR model_base64.
x_paymentNox402 payment payload (base64) for a PAID tool. If supplied it is forwarded as the X-PAYMENT header to settle the call and return the real result instead of a 402 challenge. Omit to get the price challenge first.
layer_heightNoExplicit layer height in mm (0.04-0.6); overrides `quality` if both are given.
model_base64NoBase64-encoded model file bytes (STL/3MF/OBJ/PLY/STEP), an alternative to model_url for inline data. Provide `filename` too.
infill_percentNoSparse infill density percent (0-100). Used for the material-saving delta in a full DFM report.

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations, the description fully bears the burden of behavioral disclosure. It reveals the payment requirement, the 402 challenge behavior, the fact that it performs multiple real slices, and that results are exact and slice-derived. It also discloses the benefit (reduces waste, time, post-processing) and the specific output of savings vs. as-is orientation.

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?

The description is four dense sentences, each adding essential information: paid nature, core function, benefits, reason for cost, and payment flow. It is front-loaded with the most critical detail (PAID) and avoids wasted words while remaining complete.

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?

For a complex paid tool with 9 parameters and no annotations or output schema, the description covers the main behavioral aspects: payment, what the tool does, why it costs more, and what the user gets (recommended orientation and savings). It adequately compensates for missing structured metadata.

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 has 100% parameter coverage, so baseline is 3. The description adds meaningful semantics for x_payment (forwarded as X-PAYMENT header), explains the difference between model_url and model_base64, and clarifies infill_percent's role in a full DFM report, which goes beyond the schema. However, many parameter details are already in the schema.

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 clearly states the tool's function: optimize 3D-print orientation by slicing up to 4 candidate orientations with supports and recommending the one using the least support material. It distinguishes itself from sibling tools like slice_model by focusing specifically on support minimization and reporting savings versus the as-is orientation.

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 explains the paid x402 flow (returns challenge without payment, requires x_payment to settle) and notes it costs more than other tools because it runs multiple slices, implying when cost is a consideration. It does not explicitly name alternatives or state when not to use, but the context of optimizing support waste is clear.

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

slice_modelSlice a 3D model (G-code, print time, preview)AInspect

PAID (x402, USDC on Base). Full OrcaSlicer slice on any of the 12 FDM printers: print time, filament grams, layer count, geometry, and fits-on-bed. Optionally returns a preview PNG render and/or the sliced G-code. Price tiers by outputs: base $0.005; +preview PNG $0.01; +G-code $0.015; +preview+G-code $0.02. Upload an STL/3MF/OBJ/STEP model. Without payment, returns the x402 challenge for the selected tier.

ParametersJSON Schema
NameRequiredDescriptionDefault
printerNo3D printer id from list_printers (elegoo-neptune4-max, bambu-a1, bambu-a1-mini, bambu-p1s, bambu-x1c, prusa-mk4, prusa-mini, ender3-v3, creality-k1, creality-k1-max, voron-24-350, anycubic-kobra2). Default elegoo-neptune4-max.
qualityNoPrint quality preset: draft 0.28mm | standard 0.20mm | fine 0.12mm layer height.
filenameNoFile name incl. extension, e.g. 'bracket.stl'. Sets the file type; required with model_base64.
materialNoFilament/material id (pla, pla-cf, petg, petg-cf, abs, abs-cf, asa, asa-cf, nylon, pc, pet, tpu). Default pla.
supportsNoSupport generation style.
model_urlNoPublic https URL to the 3D model file (STL, 3MF, OBJ, PLY, or STEP). The server fetches it. Use this OR model_base64.
x_paymentNox402 payment payload (base64) for a PAID tool. If supplied it is forwarded as the X-PAYMENT header to settle the call and return the real result instead of a 402 challenge. Omit to get the price challenge first.
layer_heightNoExplicit layer height in mm (0.04-0.6); overrides `quality` if both are given.
model_base64NoBase64-encoded model file bytes (STL/3MF/OBJ/PLY/STEP), an alternative to model_url for inline data. Provide `filename` too.
include_gcodeNoAdd the sliced G-code, gzip+base64 (raises the price tier).
infill_percentNoSparse infill density 0-100.
include_previewNoAdd a base64 PNG preview render of the sliced model (raises the price tier).

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It transparently states the paid nature, the exact price tiers for outputs, that omitting payment returns a 402 challenge, and that optional preview/G-code outputs are included only if requested. It does not mention potential timeouts or size limits, but the critical behavioral traits (payment gating, challenge response, optional outputs) are clearly disclosed.

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 reasonably concise (about 120 words) and well-structured: payment notice, core function, optional outputs, pricing table, input instructions, and auth behavior. Every sentence contributes useful information. The pricing detail is verbose but necessary for a paid tool; it could be slightly trimmed, but overall it is efficient.

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 tool's complexity (12 parameters, no output schema, no annotations), the description is quite complete. It explains the main return values (print time, filament grams, etc.), optional outputs (preview/G-code), input file formats, and the payment/challenge flow. It does not detail the exact JSON response structure, but that is partly covered by the listed outputs and is not mandatory for basic invocation.

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?

Schema description coverage is 100%, so the baseline is 3. The description adds high-level context (e.g., file types, price implications of include_preview/include_gcode) but does not provide parameter-specific syntax or details beyond what the schema already documents. It adds marginal value over the schema.

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 uses a specific verb ('slice') and resource ('3D model') and enumerates the concrete outputs (print time, filament grams, layer count, geometry, fits-on-bed). It clearly distinguishes from sibling tools like list_printers, analyze_model, and get_print_quote by focusing on the slicing action and its result.

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 provides clear context on when to use the tool (to slice a 3D model on a specific printer) and includes essential usage prerequisites (payment via x402, upload STL/3MF/OBJ/STEP). It does not explicitly name alternatives, but the workflow is well explained with the payment challenge behavior, making the intended usage unambiguous.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 6 tool updatesv0.2.0
    • First observedanalyze_model
    • First observedcheck_printability
    • First observedget_print_quote
    • First observedlist_printers
    • First observedoptimize_orientation
    • First observedslice_model

TDQS

A4.4/5.0
Disambiguation4/5

Most tools have clearly distinct purposes: discovery, DFM check, orientation optimization, cheap geometry analysis, quote, and slicing. However, check_printability (in free mode) and analyze_model both perform geometry-only sanity checks (dimensions, watertight, fits-on-bed), which could cause an agent to pick the wrong one despite the price and detail differences.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern: list_printers, check_printability, optimize_orientation, analyze_model, get_print_quote, slice_model. No mixed conventions or vague verbs.

Tool Count5/5

Six tools is a well-scoped set for a 3D printing MCP server, covering discovery, analysis, optimization, quoting, and slicing without bloat. Each tool addresses a distinct stage in the workflow.

Completeness5/5

The surface covers the full user journey from selecting a printer/material to running a DFM check, optimizing orientation, and obtaining a slicer-accurate quote or G-code. No critical missing operations; the paid tools have clear free/paid tiers handled via x_payment.

Maintenance

ActivitySlowing
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables interaction with 3D printer management systems through an MCP server, supporting STL file manipulation, slicing, and control of printers like OctoPrint, Klipper, Duet, and more.
    112
    230
    GPL 2.0
  • F
    license
    A
    quality
    D
    maintenance
    An intelligent 3D printing assistant that enables users to analyze meshes, generate optimal print profiles, and automate PrusaSlicer operations through an MCP client. It provides a comprehensive suite of tools for geometric analysis, printability checks, filament recommendations, and post-print diagnostics.
    17
    8
    -
  • A
    license
    Not graded
    quality
    C
    maintenance
    MCP server that provides AI agents with pay-per-call access to a suite of tools (honeypot check, token market, DeFi yields, etc.) via USDC on Base using the x402 protocol.
    4
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/zvmzaretsky/fabtally-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server