Clind MCP Server

Clind MCP Server

A Shopify-focused MCP server that enables AI agents to manage store operations like order tracking, product discovery, and checkout link generation. It facilitates customer-facing interactions including shipping estimates and real-time inventory searches.

Category
Visit Server

README

Clind MCP Server

Customer-facing AI agent for Shopify store operations using the Model Context Protocol (MCP).

Features

  • Order Tracking: Track orders by order number + email
  • Product Search: Search products, get recommendations, best sellers
  • Cart & Checkout: Add to cart, create checkout links
  • Shipping: Check shipping by zipcode, get delivery estimates

Setup

  1. Install dependencies:
npm install
  1. Configure environment variables:
cp .env.example .env

Edit .env:

SHOPIFY_STORE_URL=your-store.myshopify.com
SHOPIFY_ACCESS_TOKEN=shpca_xxxxx
PORT=3000
  1. Start the server:
npm start

Available Tools (11 total)

Order Tracking

Tool Description
track_order Track order by order number + email
get_order_status Get simple status message with tracking

Product Discovery

Tool Description
search_products Search by name, type, or tags
get_product_details Get detailed product info
get_recommendations Get product recommendations
get_best_sellers Get top selling products
get_collections Get product collections

Cart & Checkout

Tool Description
add_to_cart Generate add-to-cart link
create_checkout_link Create direct checkout link

Shipping

Tool Description
check_shipping Check shipping by zipcode
get_shipping_zones Get available shipping zones

API Usage

MCP Protocol (JSON-RPC 2.0)

curl -X POST http://localhost:3000/mcp \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "search_products",
      "arguments": { "query": "mug" }
    }
  }'

REST API

curl -X POST http://localhost:3000/call \
  -H "Content-Type: application/json" \
  -d '{
    "tool": "search_products",
    "arguments": { "query": "mug" }
  }'

Example Responses

Search Products

{
  "products": [
    {
      "id": "123",
      "title": "Paint-a-Mug Kit",
      "price": "49.00",
      "url": "https://store.com/products/paint-a-mug"
    }
  ],
  "count": 1
}

Track Order

{
  "success": true,
  "order": {
    "order_number": "1001",
    "fulfillment_status": "fulfilled",
    "tracking": [
      {
        "tracking_number": "1Z999...",
        "tracking_url": "https://..."
      }
    ]
  }
}

Check Shipping

{
  "zipcode": "90210",
  "shipping_zone": "West Coast",
  "estimated_delivery": "3-5 business days",
  "shipping_options": [
    { "name": "Standard", "estimate": "3-5 days" },
    { "name": "Express", "estimate": "1-2 days" }
  ]
}

Deployment

Deploy to Railway:

railway up

Set environment variables in Railway dashboard.

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