{
  "version": "1.0",
  "profile": "ARW-4",
  "site": {
    "name": "Shoppers Drug Mart",
    "description": "Shoppers Drug Mart is Canada's leading pharmacy retailer, made up of more than 1,300 pharmacist-owned locations across the country.",
    "homepage": "https://shoppersdrugmart.mock.arw.dev",
    "contact": "ai@shoppersdrugmart.mock.arw.dev"
  },
  "content_signals": {
    "search": "yes",
    "ai_input": "yes",
    "ai_train": "no",
    "agent": "yes",
    "use": "reference"
  },
  "content": [
    {
      "url": "/health-and-wellness/pharmacy-services/flu-shot",
      "description": "Flu vaccinations available at participating stores across Canada; flu season typically runs October to December. Offered by Shoppers Drug Mart.",
      "tags": [
        "pharmacy",
        "service"
      ],
      "authored": true,
      "priority": "high",
      "purpose": "product_information",
      "chunks": [
        {
          "id": "flu-shot-overview",
          "heading": "Overview"
        },
        {
          "id": "flu-shot-details",
          "heading": "Details"
        }
      ]
    },
    {
      "url": "/health/digital-pharmacy",
      "description": "Manage prescriptions, refills, and renewals, and access medications from your pharmacy at home or on the go. Offered by Shoppers Drug Mart.",
      "tags": [
        "pharmacy",
        "service"
      ],
      "authored": true,
      "priority": "high",
      "purpose": "product_information",
      "chunks": [
        {
          "id": "digital-pharmacy-overview",
          "heading": "Overview"
        },
        {
          "id": "digital-pharmacy-details",
          "heading": "Details"
        }
      ]
    },
    {
      "url": "/health/my-health-dashboard",
      "description": "Manage prescriptions and appointments in one place. Offered by Shoppers Drug Mart.",
      "tags": [
        "pharmacy",
        "service"
      ],
      "authored": true,
      "priority": "high",
      "purpose": "product_information",
      "chunks": [
        {
          "id": "my-health-dashboard-overview",
          "heading": "Overview"
        },
        {
          "id": "my-health-dashboard-details",
          "heading": "Details"
        }
      ]
    },
    {
      "url": "/shop/boutique/categories/beauty",
      "description": "Shop skincare, cosmetics, fragrances, and haircare from premium brands including Lancome, Clinique, Estee Lauder, and L'Oreal. Offered by Shoppers Drug Mart.",
      "tags": [
        "pharmacy",
        "service"
      ],
      "authored": true,
      "priority": "high",
      "purpose": "product_information",
      "chunks": [
        {
          "id": "beauty-overview",
          "heading": "Overview"
        },
        {
          "id": "beauty-details",
          "heading": "Details"
        }
      ]
    },
    {
      "url": "/about",
      "description": "Shoppers Drug Mart is Canada's leading pharmacy retailer, made up of more than 1,300 pharmacist-owned locations across the country.",
      "tags": [
        "about",
        "pharmacy"
      ],
      "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 Shoppers Drug Mart pharmacy 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_service",
      "description": "Retrieve full details for a single service by slug",
      "type": "rest",
      "endpoint": "/api/v1/services/{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 service",
      "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 Shoppers Drug Mart catalog and return a cited comparison of the top matches",
      "skill_doc": "/skills/find-and-compare/SKILL.md",
      "tools_required": [
        "search_catalog",
        "get_service"
      ],
      "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_service",
        "check_availability",
        "create_order"
      ],
      "annotations": {
        "requires_user_presence": true,
        "estimated_steps": 4,
        "estimated_time": "1-3 minutes"
      }
    }
  ],
  "integrations": [
    {
      "name": "Shoppers Drug Mart Catalog MCP Server",
      "type": "mcp",
      "endpoint": "/api/mcp/v1",
      "description": "MCP server exposing Shoppers Drug Mart catalog queries",
      "tool_catalog": [
        {
          "name": "search_catalog",
          "description": "Search the Shoppers Drug Mart pharmacy catalog by keyword"
        },
        {
          "name": "get_service",
          "description": "Retrieve full details for a single service by slug"
        },
        {
          "name": "check_availability",
          "description": "Check current availability for a service"
        }
      ]
    },
    {
      "name": "Shoppers Drug Mart Inventory Webhooks",
      "type": "webhooks",
      "endpoint": "/api/v1/webhooks",
      "description": "Availability-change webhook subscriptions for agent watchlists"
    }
  ]
}
