printful-mcp-server

printful-mcp-server

Enables to create print-on-demand products using the Printful API, allowing users to browse catalog, upload designs, create products, and generate mockups.

Category
Visit Server

README

Printful MCP Server

MCP server for Printful API. Create print-on-demand products with your designs.

Setup

  1. Get API key from Printful Settings

  2. Create config file:

cp printful_mcp_settings.example.json printful_mcp_settings.json
  1. Add your API key to the config

  2. Install and build:

npm install
npm run build

Usage

With Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "printful": {
      "command": "node",
      "args": ["path/to/printful-mcp-server/build/index.js"]
    }
  }
}

Test with MCP Inspector

npm run inspector

Available Tools

Catalog

  • getProducts - Browse all printable products (shirts, mugs, etc)
  • getProduct - Get product details with all variants (sizes, colors)
  • getProductVariant - Get specific variant info
  • getCategories - List product categories
  • getPrintfiles - Get print area dimensions for a product

Files

  • uploadFile - Upload design from local file
  • uploadFileFromUrl - Upload design from URL
  • getFile - Get file info
  • getFiles - List all files in library

Sync Products (Your Listings)

  • getSyncProducts - List your created products
  • getSyncProduct - Get product with variants
  • createSyncProduct - Create new product listing
  • updateSyncProduct - Update product
  • deleteSyncProduct - Delete product
  • getSyncVariant - Get variant details
  • updateSyncVariant - Update variant (price, files)
  • deleteSyncVariant - Delete variant

Mockups

  • createMockupTask - Generate mockup images
  • getMockupTask - Check mockup generation status
  • getMockupTemplates - Get available mockup styles

Store

  • getStore - Get current store info
  • getStores - List all stores
  • changeStore - Switch to different store

Workflow Example

  1. Browse catalog:
getProducts → find product ID (e.g. 71 for Unisex Staple T-Shirt)
getProduct(71) → find variant IDs for sizes/colors you want
  1. Upload design:
uploadFileFromUrl({ url: "https://example.com/my-design.png" })
→ returns file ID
  1. Create product:
createSyncProduct({
  name: "My Awesome Shirt",
  variants: [
    {
      variant_id: 4012,
      retail_price: "24.99",
      files: [{ type: "front", url: "https://example.com/my-design.png" }]
    }
  ]
})
  1. Generate mockups (optional):
createMockupTask({
  product_id: 71,
  files: [{ placement: "front", image_url: "https://..." }]
})
getMockupTask({ task_key: "..." }) → get mockup image URLs

Environment Variables

Alternative to config file:

  • PRINTFUL_API_KEY - Your API key
  • PRINTFUL_STORE_ID - Optional store ID

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured