npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@sellersmith/tailorkit-mcp

v0.2.0

Published

MCP server for interacting with TailorKit

Downloads

10

Readme

TailorKit MCP

TailorKit MCP is a powerful product customization framework for e-commerce that enables merchants to create interactive personalization experiences. Features template management, layer control, and Shopify integration for offering customizable products with minimal development effort.

TailorKit MCP

Overview

This MCP (Model Context Protocol) server connects Claude and other AI assistants to the TailorKit API, enabling them to manage customizable product templates for e-commerce platforms. With TailorKit MCP, AI assistants can create, retrieve, and manipulate product templates and their layers directly through natural language conversations.

Tools

  1. get_list_templates

    • Get a list of templates with shop domain
    • Required inputs:
      • shopDomain (string): The shop domain ending with .myshopify.com
    • Optional inputs:
      • limit (number, default: 5): Maximum number of templates to return
      • page (number, default: 1): Page number for pagination
      • sort (string, default: "updatedAt__desc"): The sort order
      • filter (string): Filter string for template search
    • Returns: List of templates with their details
  2. get_detail_template

    • Get detailed information about a specific template
    • Required inputs:
      • _id (string): The ID of the template
      • shopDomain (string): The shop domain ending with .myshopify.com
    • Returns: Detailed template information including layers and settings
  3. create_template

    • Create a new template for a shop
    • Required inputs:
      • shopDomain (string): The shop domain ending with .myshopify.com
      • name (string, default: "New Template"): Name of the template
      • dimensions (object): Width, height, measurement unit, and resolution
    • Optional inputs:
      • _id (string, format: uuid): Custom ID for the template
      • layers (array): Initial layers configuration
    • Returns: Confirmation of template creation with template ID
  4. get_list_layers_of_template

    • Get all layers for a specific template
    • Required inputs:
      • _id (string): The ID of the template
      • shopDomain (string): The shop domain ending with .myshopify.com
    • Returns: List of all layers in the template with their properties

Setup

Usage with Claude Desktop

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "tailorkit-mcp": {
      "command": "node",
      "args": ["path/to/your/dist/index.js"],
      "env": {
        "HOST": "https://your-api-host.com",
        "ACCESS_TOKEN": "your-access-token"
      }
    }
  }
}

Environment Variables

  1. HOST: Required. The host URL for your TailorKit API.
  2. ACCESS_TOKEN: Required. Your TailorKit API access token for authentication.

Access Token

Go to Settings -> Preferences -> Generate access token

TailorKit Access Token

Installation

From npm

npm install @sellersmith/tailorkit-mcp

From GitHub

git clone https://github.com/sellersmith/tailorkit-mcp.git
cd tailorkit-mcp
npm install
npm run build

Development

# Install dependencies
npm install

# Build the project
npm run build

# Run the server locally
node dist/index.js

License

This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.