MCP Server

Model Context Protocol turns your entire store into a set of callable tools for GPT, Claude, and any MCP-compatible agent.

MCP endpoint (served by your store)

https://your-store.com/mcp

Live · 7 tools exposed

Available Tools

Products, inventory, coupons & shipping — all callable.

get_products

List and filter published products by category.

live

get_product

Full product detail: price, stock, dimensions, material, brand, images.

live

search_products

Keyword search across the full catalog.

live

get_inventory

Real-time stock levels per SKU.

live

get_coupons

Active discount codes and eligibility rules.

live

get_shipping_rates

Shipping cost and delivery estimate for a product/quantity/destination.

live

create_checkout

Prepares a real order and returns a checkout link — no payment method is ever touched.

opt-in
Example call
// Real MCP — JSON-RPC 2.0 over HTTP
POST https://your-store.com/mcp
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "search_products",
    "arguments": { "query": "walnut dining table" }
  }
}

→ 200 OK
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "content": [{ "type": "text", "text": "{\"results\":[...]}" }]
  }
}
Claude / GPTMCPReal data

Standard JSON-RPC 2.0 — connect it as a custom MCP connector in Claude, or any MCP-aware agent, and it can call these tools directly against your live catalog.