TailorKit MCP

by sellersmith

6 stars
201 downloads
Not rated
GitHub

About

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 ef

Details

Author
sellersmith
GitHub stars
6
Downloads
201
Categories
Developer Tools

- List product templates with pagination and filtering
- Retrieve detailed information about a specific template
- Create new templates with custom dimensions and layers
- List all layers of a given template
- Integrates with Shopify stores (requires .myshopify.com domain)
- Uses natural language to manage templates via AI assistants

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name TailorKit MCP
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Configure the server in your claude_desktop_config.json with the tailorkit-mcp command pointing to the built index.js, and set the environment variables HOST (your TailorKit API host URL) and ACCESS_TOKEN (generated in TailorKit Settings → Preferences). You can also install from npm via npm install @sellersmith/tailorkit-mcp or build from source.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

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

McpServers

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

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
- dimension (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

```bash

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.