Printify MCP server. Read shops, catalog blueprints, print providers, products and orders; create and publish products.
Add to your MCP config, then reload & authorize:
{
"mcpServers": {
"printify": {
"url": "https://printify.usefulapi.io/mcp"
}
}
}| Tool | Type | What it does |
|---|---|---|
printify_list_shops | read | 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. |
printify_list_products | read | List products List products in a shop (paginated). Printify REST: GET /v1/shops/{shop_id}/products.json. |
printify_get_product | read | 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. |
printify_list_orders | read | List orders List orders in a shop (paginated), optionally filtered by status or SKU. Printify REST: GET /v1/shops/{shop_id}/orders.json. |
printify_get_order | read | 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. |
printify_calculate_shipping | read | 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. |
printify_list_catalog_blueprints | read | 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. |
printify_get_blueprint | read | Get blueprint Get a single catalog blueprint's details. Printify REST: GET /v1/catalog/blueprints/{blueprint_id}.json. |
printify_get_print_providers | read | 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. |
printify_get_variants | read | 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. |
printify_list_print_providers | read | List print providers List all print providers in the Printify catalog. Printify REST: GET /v1/catalog/print_providers.json. |
printify_list_webhooks | read | List webhooks List the webhooks configured for a shop. Printify REST: GET /v1/shops/{shop_id}/webhooks.json. |
printify_list_uploads | read | List uploads List images uploaded to the account's media library (paginated). Printify REST: GET /v1/uploads.json. |
printify_publish_product | write | 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. |
printify_usage_status | Usage status (free-tier meter) Report the caller's current free-tier usage this month: calls used, monthly limit, remaining, and whether the cap is reached. | |
printify_upgrade | Upgrade to Pro (unlimited) Subscribe to Pro for unlimited tool calls, monthly ($9) or yearly ($90). Returns a Stripe Checkout link. |
| Plan | Price | Limit |
|---|---|---|
| Free | $0 | 100 tool calls / month |
| Pro | $9/mo · $90/yr | Unlimited |
This is a Model Context Protocol endpoint — meant to be connected from an AI client, not opened in a browser. An invalid_token response at the URL is the auth gate working as designed; clients authenticate automatically.