{
  "version": "1.0",
  "profile": "ARW-4",
  "site": {
    "name": "Canadian Tire",
    "description": "Get anything from auto parts to home décor, outdoor living products, fitness/sports equipment, tools and more at Canadian Tire online or one of 500+ stores.",
    "homepage": "https://canadiantire.mock.arw.dev",
    "contact": "ai@canadiantire.mock.arw.dev"
  },
  "content_signals": {
    "search": "yes",
    "ai_input": "yes",
    "ai_train": "no",
    "agent": "yes",
    "use": "reference"
  },
  "content": [
    {
      "url": "/en/cat/automotive/tires-wheels/tires-DC0002726.html",
      "description": "Shop tires and wheels for your vehicle. Offered by Canadian Tire.",
      "tags": [
        "retail",
        "product"
      ],
      "authored": true,
      "priority": "high",
      "purpose": "product_information",
      "chunks": [
        {
          "id": "tires-dc0002726-html-overview",
          "heading": "Overview"
        },
        {
          "id": "tires-dc0002726-html-details",
          "heading": "Details"
        }
      ]
    },
    {
      "url": "/en/cat/automotive/motomaster-batteries",
      "description": "MotoMaster automotive batteries and car care products, a Canadian Tire exclusive brand. Offered by Canadian Tire.",
      "tags": [
        "retail",
        "product"
      ],
      "authored": true,
      "priority": "high",
      "purpose": "product_information",
      "chunks": [
        {
          "id": "motomaster-batteries-overview",
          "heading": "Overview"
        },
        {
          "id": "motomaster-batteries-details",
          "heading": "Details"
        }
      ]
    },
    {
      "url": "/en/pdp/mastercraft-20v-cordless-drill-driver-kit-0547520p.html",
      "description": "20V brushed 2-speed cordless drill/driver kit with PWR POD 2.0 Ah battery and charger. Offered by Canadian Tire.",
      "tags": [
        "retail",
        "product"
      ],
      "authored": true,
      "priority": "high",
      "purpose": "product_information",
      "chunks": [
        {
          "id": "mastercraft-20v-cordless-drill-driver-kit-0547520p-html-overview",
          "heading": "Overview"
        },
        {
          "id": "mastercraft-20v-cordless-drill-driver-kit-0547520p-html-details",
          "heading": "Details"
        }
      ]
    },
    {
      "url": "/en/cat/home/noma-holiday-lighting",
      "description": "NOMA outdoor and holiday lighting, a Canadian Tire exclusive brand. Offered by Canadian Tire.",
      "tags": [
        "retail",
        "product"
      ],
      "authored": true,
      "priority": "high",
      "purpose": "product_information",
      "chunks": [
        {
          "id": "noma-holiday-lighting-overview",
          "heading": "Overview"
        },
        {
          "id": "noma-holiday-lighting-details",
          "heading": "Details"
        }
      ]
    },
    {
      "url": "/about",
      "description": "Canadian Tire Corporation is headquartered in Toronto, Ontario, and operates as Canada's top department store with 500+ retail locations plus online shopping spanning automotive, home, outdoor living, sports and recreation, and tools & hardware.",
      "tags": [
        "about",
        "retail"
      ],
      "authored": true,
      "priority": "medium",
      "purpose": "organization_information",
      "chunks": [
        {
          "id": "about-story",
          "heading": "Our Story"
        },
        {
          "id": "about-agents",
          "heading": "For Agents"
        }
      ]
    }
  ],
  "tools": [
    {
      "name": "search_catalog",
      "description": "Search the Canadian Tire retail catalog by keyword",
      "type": "rest",
      "endpoint": "/api/v1/search",
      "method": "GET",
      "auth": "none",
      "input_schema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string"
          },
          "max_results": {
            "type": "integer",
            "default": 10
          }
        },
        "required": [
          "query"
        ]
      },
      "annotations": {
        "read_only": true,
        "idempotent": true
      }
    },
    {
      "name": "get_product",
      "description": "Retrieve full details for a single product by slug",
      "type": "rest",
      "endpoint": "/api/v1/products/{slug}",
      "method": "GET",
      "auth": "none",
      "input_schema": {
        "type": "object",
        "properties": {
          "slug": {
            "type": "string"
          }
        },
        "required": [
          "slug"
        ]
      },
      "annotations": {
        "read_only": true,
        "idempotent": true
      }
    },
    {
      "name": "check_availability",
      "description": "Check current availability for a product",
      "type": "rest",
      "endpoint": "/api/v1/availability",
      "method": "GET",
      "auth": "none",
      "input_schema": {
        "type": "object",
        "properties": {
          "slug": {
            "type": "string"
          },
          "postal_code": {
            "type": "string"
          }
        },
        "required": [
          "slug"
        ]
      },
      "annotations": {
        "read_only": true,
        "idempotent": true
      }
    },
    {
      "name": "create_order",
      "description": "Create a demonstration order (no real fulfilment)",
      "type": "rest",
      "endpoint": "/api/v1/orders",
      "method": "POST",
      "auth": "oauth2",
      "input_schema": {
        "type": "object",
        "properties": {
          "slug": {
            "type": "string"
          },
          "quantity": {
            "type": "integer",
            "minimum": 1
          }
        },
        "required": [
          "slug",
          "quantity"
        ]
      },
      "annotations": {
        "destructive": false,
        "idempotent": false
      }
    }
  ],
  "skills": [
    {
      "name": "find_and_compare",
      "description": "Search the Canadian Tire catalog and return a cited comparison of the top matches",
      "skill_doc": "/skills/find-and-compare/SKILL.md",
      "tools_required": [
        "search_catalog",
        "get_product"
      ],
      "annotations": {
        "requires_user_presence": false,
        "estimated_steps": 2,
        "estimated_time": "10-30 seconds"
      }
    },
    {
      "name": "order_item",
      "description": "End-to-end demonstration order: search, check availability, create order",
      "skill_doc": "/skills/order-item/SKILL.md",
      "tools_required": [
        "search_catalog",
        "get_product",
        "check_availability",
        "create_order"
      ],
      "annotations": {
        "requires_user_presence": true,
        "estimated_steps": 4,
        "estimated_time": "1-3 minutes"
      }
    }
  ],
  "integrations": [
    {
      "name": "Canadian Tire Catalog MCP Server",
      "type": "mcp",
      "endpoint": "/api/mcp/v1",
      "description": "MCP server exposing Canadian Tire catalog queries",
      "tool_catalog": [
        {
          "name": "search_catalog",
          "description": "Search the Canadian Tire retail catalog by keyword"
        },
        {
          "name": "get_product",
          "description": "Retrieve full details for a single product by slug"
        },
        {
          "name": "check_availability",
          "description": "Check current availability for a product"
        }
      ]
    },
    {
      "name": "Canadian Tire Inventory Webhooks",
      "type": "webhooks",
      "endpoint": "/api/v1/webhooks",
      "description": "Availability-change webhook subscriptions for agent watchlists"
    }
  ]
}
