{
  "mcpVersion": "1.0",
  "storeInfo": {
    "name": "Congeriem E-Commerce Store",
    "description": "Premium Magento 2 E-Commerce Store with advanced features.",
    "baseUrl": "https://congeriem.com",
    "locales": ["en_US"],
    "currencies": ["USD"]
  },
  "mcpServers": {
    "magento-graphql": {
      "type": "graphql",
      "url": "https://congeriem.com/graphql",
      "description": "Primary endpoint for fetching product catalog, categories, and managing customer carts."
    },
    "magento-rest": {
      "type": "openapi",
      "url": "https://congeriem.com/rest/V1",
      "schemaUrl": "https://congeriem.com/rest/all/schema?services=all",
      "description": "Administrative REST API for order processing, inventory updates, and advanced operations."
    }
  },
  "tools": [
    {
      "name": "searchProducts",
      "description": "Search the product catalog by keyword.",
      "parameters": {
        "type": "object",
        "properties": {
          "keyword": { "type": "string" }
        },
        "required": ["keyword"]
      }
    },
    {
      "name": "getProductDetails",
      "description": "Fetch details of a specific product by its SKU.",
      "parameters": {
        "type": "object",
        "properties": {
          "sku": { "type": "string" }
        },
        "required": ["sku"]
      }
    },
    {
      "name": "addToCart",
      "description": "Add a specific product to the customer's cart.",
      "parameters": {
        "type": "object",
        "properties": {
          "sku": { "type": "string" },
          "quantity": { "type": "integer" }
        },
        "required": ["sku", "quantity"]
      }
    }
  ],
  "agentInstructions": "Refer to /llms.txt for extended navigation and structural guidelines. For all data retrieval, prioritize the GraphQL endpoint."
}
