{
  "server": {
    "name": "discountkit-docs",
    "version": "0.1.0"
  },
  "endpoint": "https://discountkit.app/mcp",
  "transport": "streamable-http",
  "tools": [
    {
      "name": "search_docs",
      "description": "Search the discountkit documentation (discount types, DiscountKit Live storefront components, POS, Sidekick, stacking). Returns the best-matching pages with snippets and URLs.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "What to search for, e.g. 'volume picker events' or 'stacking rules'"
          }
        },
        "required": [
          "query"
        ]
      }
    },
    {
      "name": "get_doc",
      "description": "Fetch one documentation page as full markdown by its path (as returned by search_docs or list_docs), e.g. 'docs/components/volume-picker/events'.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "path": {
            "type": "string",
            "description": "The doc path or URL"
          }
        },
        "required": [
          "path"
        ]
      }
    },
    {
      "name": "list_docs",
      "description": "List every documentation page with its title, description and URL.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    }
  ]
}