{
  "schema_version": "1.0",
  "name": "UArtShow MCP",
  "description": "Search and get details for hand-painted oil paintings from UArtShow Hong Kong studio",
  "version": "1.0",
  "transport": "streamable-http",
  "endpoint": "https://uartshow.com/api/mcp",
  "auth": {
    "type": "oauth2",
    "authorization_url": "https://uartshow.com/oauth/authorize",
    "token_url": "https://uartshow.com/oauth/token"
  },
  "tools": [
    {
      "name": "search_paintings",
      "description": "Search hand-painted oil paintings by room, color, style, size, or price range",
      "input_schema": {
        "type": "object",
        "properties": {
          "room": {
            "type": "string",
            "enum": ["living", "bedroom", "dining", "office", "entryway", "kitchen"],
            "description": "Room where the painting will be displayed"
          },
          "color": {
            "type": "string",
            "description": "Dominant color (white, blue, warm, neutral, green, etc.)"
          },
          "style": {
            "type": "string",
            "enum": ["impasto", "abstract", "wabi-sabi", "figurative", "coastal", "cityscape", "floral"],
            "description": "Painting style"
          },
          "max_price": {"type": "number", "description": "Maximum price in USD"}
        }
      }
    },
    {
      "name": "get_product",
      "description": "Get full product details by handle or product ID",
      "input_schema": {
        "type": "object",
        "properties": {
          "handle": {"type": "string", "description": "Shopify product handle, e.g. 'alpine-whispers-textured-white-abstract-oil-painting'"}
        },
        "required": ["handle"]
      }
    },
    {
      "name": "get_collections",
      "description": "List all product collections",
      "input_schema": {"type": "object", "properties": {}}
    }
  ]
}