Skip to main content
Glama
N-Graves

printify-mcp-server

by N-Graves

printify_publish_product

Signal that a product is live by marking it as published to its connected sales channel. Use this action when the storefront update is handled by the channel's own integration.

Instructions

Mark a product as published to its connected sales channel. Note this tells Printify the product is live; the storefront itself is updated by whatever integration owns that channel.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
shop_idYesYour shop id. printify_get_shops lists them.
product_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/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 behavioral burden. The note explicitly discloses that Printify is only told the product is live and that the storefront itself is updated by the channel's integration owner, which is a valuable non-obvious nuance. It does not cover auth, idempotency, or error behavior, but the most misleading interpretation is directly addressed.

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 concise sentences with no filler. The core action is front-loaded, and the clarifying caveat about the storefront update follows immediately, making the structure efficient and easy to parse.

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?

For a state-changing tool with no annotations and no output schema, the description covers the essential purpose and a key limitation. However, it omits prerequisites such as the product needing to be connected to the sales channel and does not explain how to obtain or validate product_id, which leaves some practical invocation gaps.

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 description coverage is 50%: shop_id is documented in the schema, but product_id only has minLength and no semantic description. The tool description adds no parameter-level meaning; it merely restates the 'product' concept already present in the tool name. The missing product_id guidance is not compensated elsewhere.

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 states a specific action ('Mark a product as published') against a clear resource ('its connected sales channel') and adds a clarifying note that this is a Printify status signal, not a storefront update. This distinguishes it from the sibling listing/reading tools such as printify_list_products and printify_get_product.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives useful context: the tool is used to mark a product live on its connected sales channel. However, it does not explicitly state when to prefer this tool over alternatives, mention exclusions, or name a sibling fallback, so the usage guidance remains implied rather than explicit.

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