Skip to main content
Glama

PrintYourDuck Quote

Server Details

Find and submit local 3D print files for manual PrintYourDuck quote review.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
printyourduck/printyourduck-mcp
GitHub Stars
0
Server Listing
com.printyourduck/quote

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.2/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool serves a distinct purpose: gathering requirements before submission, submitting the request, and checking status. No overlap or ambiguity.

Naming Consistency5/5

All tools follow a consistent get_/submit_ verb pattern, clearly indicating the action. The naming is predictable and readable.

Tool Count4/5

Three tools is minimal but appropriate for the simple manual quote flow—requirements, submit, status. Slightly thin but covers essential steps without unnecessary complexity.

Completeness4/5

The surface covers the core workflow (requirements, submit, status) but lacks update or cancel operations. Minor gap, but manageable for a manual review process.

Available Tools

3 tools
get_printyourduck_quote_requirementsGet PrintYourDuck Quote RequirementsA
Read-onlyIdempotent
Inspect

Read public requirements for a PrintYourDuck manual custom 3D printing quote request. Use this before submit_quote_request to check accepted file types, material options, confirmations, restrictions, and the private-upload flow. Does not calculate instant pricing.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
uploadFlowYes
requestTypesYes
restrictionsYes
marketRegionsYes
manualQuoteOnlyYes
maxFileSizeBytesYes
acceptedFileTypesYes
noPaymentAtUploadYes
maxFilesPerRequestYes
materialPreferencesYes
maxTotalFileSizeBytesYes
requiredConfirmationsYes
Behavior4/5

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

Annotations already indicate readOnlyHint=true and destructiveHint=false, so the tool is safe. The description adds valuable behavioral context by specifying that it reads public requirements, lists what it provides, and clarifies it does not calculate pricing. No contradictions with 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?

The description is two sentences, front-loading the purpose and then providing usage guidance. Every sentence is necessary and adds value, with no wasted words.

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 low complexity (zero parameters) and the presence of an output schema for return details, the description is complete. It covers the tool's role in the workflow and what it provides.

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 has zero parameters, and schema description coverage is 100%. Baseline for zero parameters is 4. The description does not add parameter semantics but is adequate given the absence of 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 that the tool reads public requirements for a PrintYourDuck manual custom 3D printing quote request, listing specific items like accepted file types and material options. It distinguishes itself from siblings by noting that it should be used before submit_quote_request and does not calculate instant pricing.

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 explicitly says to use this tool before submit_quote_request to check requirements, providing clear context. However, it does not explicitly state when not to use it or compare with the sibling get_quote_status, though the role is implied.

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

get_quote_statusGet PrintYourDuck Quote StatusA
Read-onlyIdempotent
Inspect

Look up public-safe quote status using the quote request ID and matching customer email. Alias intents: check quote status, check manual review status, check payment-link availability. Does not expose private file keys, payment URLs, or sensitive operational details.

ParametersJSON Schema
NameRequiredDescriptionDefault
emailYes
quoteRequestIdYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
foundYes
statusNo
messageNo
createdAtNo
shippedAtNo
updatedAtNo
marketRegionNo
paymentStatusNo
quoteRequestIdNo
expectedQuoteTimeNo
trackingAvailableNo
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false, so safety is covered. The description adds value by stating it does not expose sensitive details, reinforcing the safety profile. No contradictions.

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?

Two sentences, front-loaded with the core action, no fluff. Every sentence adds value.

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 read-only lookup tool with annotations and an output schema (not shown but present), the description covers purpose, safety, and usage context. It is complete for an AI agent to understand when and how to invoke the tool.

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 coverage is 0%, meaning the description does not explain parameter semantics. Although the description mentions 'quote request ID' and 'customer email', it does not provide details beyond the schema's property names. With 0% coverage, the description should compensate but does so minimally.

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 specifies the action ('look up public-safe quote status') and the required inputs ('quote request ID and matching customer email'). It also lists alias intents, which helps distinguish this tool from its siblings like get_printyourduck_quote_requirements and submit_quote_request.

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 when to use the tool ('check quote status, check manual review status, check payment-link availability') and what it does not expose, providing clear context. However, it does not explicitly state when not to use it or directly compare to siblings.

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

submit_quote_requestSubmit PrintYourDuck Quote RequestAInspect

Submit customer contact details and private uploaded file metadata for manual PrintYourDuck quote review. Alias intents: request a 3D print quote, send uploaded file for quote, submit manual quote request. Requires explicit confirmations and a stable submissionId for retries. No payment is collected and no instant price is returned.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNo
nameYes
emailYes
filesYes
notesNo
phoneNo
countryYes
quantityYes
requestTypeNo
submissionIdYes
desiredDeadlineNo
rightsConfirmedYes
materialPreferenceYes
manualQuoteConfirmedYes
restrictedItemConfirmedYes
userSubmissionConfirmedYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
okYes
errorNo
issuesNo
statusNo
messageYes
quoteRequestIdNo
expectedQuoteTimeNo
Behavior4/5

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

Annotation already indicates non-read-only and non-destructive. Description adds value by stating 'No payment is collected and no instant price is returned' and 'Requires explicit confirmations and a stable submissionId for retries', clarifying behavioral traits like manual review and retry semantics. No contradictions with 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?

Description is concise (3 sentences) and front-loaded with core purpose, followed by aliases and key behavioral notes. Every sentence provides essential information without redundancy.

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

Completeness3/5

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

Given the tool's complexity (16 required parameters, manual review process), the description covers purpose and high-level behavior but lacks details on parameter usage and post-submission flow. Output schema exists but is not referenced; description could better guide the agent on what to expect after submission.

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?

With 16 parameters and 0% schema description coverage, the description lacks detailed parameter explanations. It groups parameters as 'customer contact details' and 'file metadata' and hints at submissionId and confirmations, but fails to clarify most parameters like materialPreference, quantity, requestType, etc., leaving significant ambiguity.

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 'Submit customer contact details and private uploaded file metadata for manual PrintYourDuck quote review' with a specific verb and resource. Alias intents further disambiguate from siblings which are about getting requirements and status.

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?

Provides alias intents to map user requests to this tool, and mentions prerequisites (explicit confirmations, stable submissionId for retries). Does not explicitly state when to use alternatives, but the sibling tool names and description context imply appropriate usage.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • F
    license
    A
    quality
    C
    maintenance
    MCP server for real FDM 3D-printing slicing, quoting, and design-for-manufacturability analysis via the FabTally API, supporting 12 printer profiles and 12 materials. Includes free discovery/printability tools and paid slice/quote/orientation tools settled via x402 (USDC on Base).
    Last updated
    6
  • A
    license
    -
    quality
    D
    maintenance
    Enables users to connect Claude with various 3D printer management systems, allowing tasks like printer status monitoring, file management, print job control, and STL file manipulation.
    Last updated
    153
    GPL 2.0
  • F
    license
    A
    quality
    B
    maintenance
    Generates printable 3D CAD models (e.g., bottle caps) from photos by combining client-side dimension extraction with CadQuery precision modeling, mesh repair, and optional AI-based visual mesh generation via Meshy.
    Last updated
    4

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.