{
  "name": "Nuri WebMCP",
  "description": "WebMCP manifest for the deployed Nuri public website.",
  "version": "1.0.0",
  "server": "https://www.nuri.com/mcp",
  "tools": [
    {
      "name": "list_public_pages",
      "description": "List the public Nuri pages that are ready for deployment.",
      "input_schema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "get_site_summary",
      "description": "Return the public Nuri landing-page summary.",
      "input_schema": {
        "type": "object",
        "properties": {
          "lang": {
            "type": "string",
            "enum": [
              "de",
              "en",
              "es",
              "it"
            ]
          }
        }
      }
    },
    {
      "name": "get_app_download_links",
      "description": "Return official iOS and Android app download links.",
      "input_schema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "read_public_page_markdown",
      "description": "Return Markdown for one deployed public Nuri page.",
      "input_schema": {
        "type": "object",
        "properties": {
          "path": {
            "type": "string",
            "enum": [
              "/",
              "/de/",
              "/es/",
              "/it/",
              "/privacy-policy",
              "/terms-of-service"
            ]
          }
        },
        "required": [
          "path"
        ]
      }
    },
    {
      "name": "list_shop_products",
      "description": "List Bitcoin shop products; pay with Bitcoin, Lightning or x402.",
      "input_schema": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string",
            "enum": [
              "hardware-wallets",
              "miners",
              "node-hardware",
              "steel-backups",
              "accessories",
              "wearables",
              "books",
              "gift-cards"
            ]
          }
        }
      }
    },
    {
      "name": "get_product",
      "description": "Return details, price, payment options and honest-review summary for one product.",
      "input_schema": {
        "type": "object",
        "properties": {
          "slug": {
            "type": "string"
          }
        },
        "required": [
          "slug"
        ]
      }
    }
  ]
}