{
  "schemaVersion": "2025-06-18",
  "name": "sundaymade",
  "title": "SundayMade Storefront",
  "description": "Read-only MCP server exposing SundayMade products, collections, and policy pages to AI agents.",
  "vendor": {
    "name": "SundayMade",
    "url": "https://sundaymade.nl"
  },
  "homepage": "https://sundaymade.nl",
  "documentation": "https://sundaymade.nl/llms.txt",
  "contact": {
    "email": "hello@sundaymade.nl"
  },
  "capabilities": {
    "tools": true,
    "resources": true,
    "prompts": false,
    "logging": false
  },
  "tools": [
    {
      "name": "list_products",
      "description": "List all products available on the SundayMade storefront.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "language": { "type": "string", "enum": ["nl", "en"], "default": "nl" },
          "limit": { "type": "integer", "minimum": 1, "maximum": 50, "default": 20 }
        }
      }
    },
    {
      "name": "get_product",
      "description": "Fetch a single SundayMade product by handle.",
      "inputSchema": {
        "type": "object",
        "required": ["handle"],
        "properties": {
          "handle": { "type": "string", "description": "Shopify product handle (URL slug)." },
          "language": { "type": "string", "enum": ["nl", "en"], "default": "nl" }
        }
      }
    },
    {
      "name": "list_collections",
      "description": "List storefront collections.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "language": { "type": "string", "enum": ["nl", "en"], "default": "nl" }
        }
      }
    }
  ],
  "resources": [
    {
      "uri": "https://sundaymade.nl/sitemap.xml",
      "name": "sitemap",
      "description": "Canonical URL sitemap.",
      "mimeType": "application/xml"
    },
    {
      "uri": "https://sundaymade.nl/llms.txt",
      "name": "llms-txt",
      "description": "Agent-friendly summary of SundayMade's site structure.",
      "mimeType": "text/plain"
    }
  ],
  "transports": [
    {
      "type": "webmcp",
      "url": "https://sundaymade.nl/"
    }
  ]
}
