com.printyourduck/quote
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@com.printyourduck/quotelist recent STL files in this directory for quote submission"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
PrintYourDuck MCP
MCP server for sending local 3D print files to PrintYourDuck manual quote
review. It is built for coding-agent workflows where the user has generated or
selected a local .stl, .step, .stp, .3mf, .obj, or .zip file and
wants help preparing a quote request.
The server is preconfigured for https://printyourduck.com. Users do not need
to supply an API URL, API key, or shop routing configuration.
Status
Surface | Status |
Remote MCP | Live at |
Local stdio package | Available via npm as |
npm package | Public: |
OCI image | Release target: |
MCP Registry | Live as |
npx is the primary install path today. Use Docker only after verifying the
GHCR image is publicly pullable for the target version.
Related MCP server: PrusaMCP
Why This Exists
3D-print quote workflows are easy to get wrong when a user is coming from code, CAD generation, or rapid prototyping. This MCP server gives agents a narrow, auditable workflow:
Read the public quote requirements.
Find recent printable files in the current project.
Ask the user to choose one file and confirm the required safety statements.
Upload that file through PrintYourDuck's private upload flow.
Submit the manual quote request.
Check public-safe quote status by quote ID and customer email.
It does not calculate instant pricing, collect payment at upload, automate checkout, or expose private operational details.
Install
Use this now:
npx -y @printyourduck/mcpFor team-shared or reproducible client configs, pin a package version:
npx -y @printyourduck/mcp@<version>Client Setup
MCP client configuration files are not identical across clients. Use the shape expected by your client, then restart or refresh that client so it reloads the server.
Claude Code, local user setup:
claude mcp add --transport stdio printyourduck -- npx -y @printyourduck/mcpClaude Code, project-shared .mcp.json:
{
"mcpServers": {
"printyourduck": {
"command": "npx",
"args": ["-y", "@printyourduck/mcp"]
}
}
}Use project-shared .mcp.json only when a repository should intentionally
offer PrintYourDuck tools to everyone opening that project. Claude Code prompts
for approval before using project-scoped MCP servers.
VS Code workspace setup in .vscode/mcp.json:
{
"servers": {
"printyourduck": {
"command": "npx",
"args": ["-y", "@printyourduck/mcp"]
}
}
}Clients that use the common mcpServers shape can use the Claude Code project
snippet above.
Test the local server with MCP Inspector:
npx -y @modelcontextprotocol/inspector npx -y @printyourduck/mcpDocker, after verifying the GHCR image is public:
docker run --rm -i ghcr.io/printyourduck/printyourduck-mcp:<version>Remote-capable MCP clients can connect today:
https://printyourduck.com/api/mcpClaude Code remote HTTP setup:
claude mcp add --transport http printyourduck https://printyourduck.com/api/mcpTools
Tool | Purpose | Network/File Access |
| Returns accepted file types, material choices, required confirmations, and safety boundaries. | No local file access. No network. |
| Finds recent printable files under an allowed local project directory. | Read-only local file metadata. |
| Uploads one user-approved local file and creates a manual quote request. | Reads one allowed local file, uploads privately, then submits to PrintYourDuck. |
| Looks up public-safe quote status with quote ID and matching email. | Network request to PrintYourDuck only. |
Local file discovery and upload are limited to the current working directory by
default. Set PRINTYOURDUCK_MCP_ALLOWED_ROOTS to a path-delimited allowlist when
the MCP client should access additional project directories.
submit_local_file_for_quote derives a stable submissionId from the selected
file and quote details unless the caller provides one. Reuse that ID on retry to
avoid duplicate manual quote requests. The helper also caches the uploaded
private file key locally by submissionId and file hash so retries can reuse the
same uploaded file reference when the upload service returns a generated Blob
key.
Guardrails
This server preserves the PrintYourDuck manual-quote boundary:
no instant pricing today;
no payment at upload;
no checkout automation;
no local-production, Canadian-made-production, or guaranteed-delivery claims;
no supplier locations, fulfilment routes, carrier strategy, supplier costs, margin logic, private file references, or customer data in public responses.
Price ranges or instant estimates are a valid future capability only when they are explicitly scoped, tested, publicly documented, and clearly separated from checkout or payment collection.
Development
pnpm install
pnpm check:releaseUseful checks:
pnpm check # lint, tests, typecheck
pnpm check:security # audit, gitleaks, trufflehog
pnpm check:mcp # stdio initialize, tool list, fixture discovery, path guard
pnpm check:pack # npm tarball allowlistpnpm check:mcp builds the server, starts it over stdio, verifies initialize and
tool metadata, creates a temporary .stl fixture, verifies local discovery, and
verifies files outside allowed roots are rejected before upload.
Run the live production smoke only when you intentionally want to create a real quote request:
PRINTYOURDUCK_MCP_LIVE_SMOKE=1 \
PRINTYOURDUCK_MCP_SMOKE_EMAIL=operator@example.com \
pnpm smoke:liveThe live smoke uploads a tiny fixture through https://printyourduck.com,
submits one manual quote request, and verifies get_quote_status returns.
Release Checklist
Only claim npm local-helper installability after all of these pass:
pnpm check:release
npm view @printyourduck/mcp version
VERSION="$(npm view @printyourduck/mcp version)"
gh release view "mcp-v${VERSION}"
PRINTYOURDUCK_MCP_LIVE_SMOKE=1 PRINTYOURDUCK_MCP_SMOKE_EMAIL=operator@example.com pnpm smoke:liveRelease npm package changes from this dedicated MCP repository, not from the website repository.
For each tagged release, verify the npm package was published from the tagged commit:
VERSION="$(node -p "require('./package.json').version")"
test "$(npm view "@printyourduck/mcp@${VERSION}" gitHead)" = "$(git rev-parse HEAD)"
npm view "@printyourduck/mcp@${VERSION}" dist.tarball dist.integrityThe MCP Registry name is com.printyourduck/quote, so publication uses
domain-based HTTP authentication for printyourduck.com. Serve the public
v=MCPv1; ... record from https://printyourduck.com/.well-known/mcp-registry-auth
and keep the matching private key only in the MCP_REGISTRY_PRIVATE_KEY GitHub
Actions secret for this repository.
Only claim MCP Registry publication after this passes:
curl -f "https://registry.modelcontextprotocol.io/v0/servers/com.printyourduck%2Fquote/versions"Before tagging a release, make the GHCR package public in GitHub's package
settings. The release workflow fails before publishing npm if
ghcr.io/printyourduck/printyourduck-mcp is still private, because the public
release must be anonymously pullable.
Only claim OCI/container installability after making package visibility public and running:
VERSION="$(node -p "require('./package.json').version")"
DOCKER_CONFIG="$(mktemp -d)" docker manifest inspect "ghcr.io/printyourduck/printyourduck-mcp:${VERSION}"Contributing
See CONTRIBUTING.md. Good first areas include client setup docs, path-safety hardening, MCP metadata safety, package release checks, and public-safe examples.
For security issues, see SECURITY.md. Do not include secrets, customer files, private file references, supplier/cost/margin details, or dashboard screenshots in public issues.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityBmaintenanceEnables 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.Last updated153219GPL 2.0
- FlicenseAqualityDmaintenanceAn 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.Last updated174
- Alicense-qualityDmaintenanceEnables 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 updated153GPL 2.0
- Alicense-qualityCmaintenanceEnables AI agents to operate a 3D print farm via O.D.I.N. backend, including job queuing, printer control, inventory management, and standalone cost calculators.Last updated23Apache 2.0
Related MCP Connectors
Convert Revit files to XKT, IFC, or DWG and query BIM data via natural language.
Control Unreal Engine to browse assets, import content, and manage levels and sequences. Automate…
Revit model query + APS Design Automation runner.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/printyourduck/printyourduck-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server