# printify MCP server

Read shops, catalog blueprints, print providers, products and orders; create and publish products.

## Links
- Registry page: https://www.getdrio.com/mcp/io-usefulapi-printify
- Repository: https://github.com/m190/usefulapi-mcp

## Install
- Endpoint: https://printify.usefulapi.io/mcp
- Auth: Not captured

## Setup notes
- Remote endpoint: https://printify.usefulapi.io/mcp

## Tools
- printify_list_shops (List shops) - List all shops connected to the Printify account. This is the entry point — each shop's `id` is required by the product, order and webhook tools. Printify REST: GET /v1/shops.json. Endpoint: https://printify.usefulapi.io/mcp
- printify_list_products (List products) - List products in a shop (paginated). Printify REST: GET /v1/shops/{shop_id}/products.json. Endpoint: https://printify.usefulapi.io/mcp
- printify_get_product (Get product) - Get a single product's full details (variants, images, print areas, publish status). Printify REST: GET /v1/shops/{shop_id}/products/{product_id}.json. Endpoint: https://printify.usefulapi.io/mcp
- printify_list_orders (List orders) - List orders in a shop (paginated), optionally filtered by status or SKU. Printify REST: GET /v1/shops/{shop_id}/orders.json. Endpoint: https://printify.usefulapi.io/mcp
- printify_get_order (Get order) - Get a single order's full details, including `shipments` (carrier + tracking numbers). Printify REST: GET /v1/shops/{shop_id}/orders/{order_id}.json. Endpoint: https://printify.usefulapi.io/mcp
- printify_calculate_shipping (Calculate shipping) - Get a shipping price quote for a set of line items to a destination address. Non-destructive — it only prices, it does NOT place an order. `line_items` is an array where each item is one of {product_id, variant_id, quantity}, {print_provider_id, blueprint_id, variant_id, quantity}, or {sku, quantity}. `address_to` is the destination (first_name, last_name, email, phone, country, region, address1, address2, city, zip, company). Printify REST: POST /v1/shops/{shop_id}/orders/shipping.json. Endpoint: https://printify.usefulapi.io/mcp
- printify_list_catalog_blueprints (List catalog blueprints) - List all blueprints (product types, e.g. 'Unisex T-Shirt') available in the Printify catalog. Printify REST: GET /v1/catalog/blueprints.json. Endpoint: https://printify.usefulapi.io/mcp
- printify_get_blueprint (Get blueprint) - Get a single catalog blueprint's details. Printify REST: GET /v1/catalog/blueprints/{blueprint_id}.json. Endpoint: https://printify.usefulapi.io/mcp
- printify_get_print_providers (Get blueprint print providers) - List the print providers that can produce a given blueprint. Printify REST: GET /v1/catalog/blueprints/{blueprint_id}/print_providers.json. Endpoint: https://printify.usefulapi.io/mcp
- printify_get_variants (Get variants) - List the variants (sizes, colors) a print provider offers for a blueprint. Printify REST: GET /v1/catalog/blueprints/{blueprint_id}/print_providers/{print_provider_id}/variants.json. Endpoint: https://printify.usefulapi.io/mcp
- printify_list_print_providers (List print providers) - List all print providers in the Printify catalog. Printify REST: GET /v1/catalog/print_providers.json. Endpoint: https://printify.usefulapi.io/mcp
- printify_list_webhooks (List webhooks) - List the webhooks configured for a shop. Printify REST: GET /v1/shops/{shop_id}/webhooks.json. Endpoint: https://printify.usefulapi.io/mcp
- printify_list_uploads (List uploads) - List images uploaded to the account's media library (paginated). Printify REST: GET /v1/uploads.json. Endpoint: https://printify.usefulapi.io/mcp
- printify_publish_product (Publish product) - Publish a product to the shop's connected sales channel (e.g. Shopify, Etsy). STATE-CHANGING: this locks the product and pushes the selected fields to the external store. The body is an object of booleans controlling which fields are published; all default to true. Printify REST: POST /v1/shops/{shop_id}/products/{product_id}/publish.json. Endpoint: https://printify.usefulapi.io/mcp

## Resources
Not captured

## Prompts
Not captured

## Metadata
- Owner: io.usefulapi
- Version: 1.0.0
- Runtime: Streamable Http
- Transports: HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: Aug 1, 2026
- Source: https://registry.modelcontextprotocol.io
