{
  "name": "PokéCity Israel 2026",
  "description": "The biggest Pokémon convention in Israel — PokéCity. Get event info, ticket status, venue directions, and navigate the site.",
  "url": "https://poke-remix-magic.lovable.app",
  "tools": [
    {
      "name": "get_event_info",
      "description": "Returns full details about the PokéCity Israel Pokémon convention — date, venue, features, and more.",
      "inputSchema": {},
      "readOnly": true
    },
    {
      "name": "get_ticket_status",
      "description": "Check current ticket availability and pricing for the PokéCity convention.",
      "inputSchema": {},
      "readOnly": true
    },
    {
      "name": "navigate_to_page",
      "description": "Navigate the user to a specific page on the PokéCity website.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "page": {
            "type": "string",
            "description": "The page to navigate to. One of: home, tickets, terms, account, auth",
            "enum": ["home", "tickets", "terms", "account", "auth"]
          }
        },
        "required": ["page"]
      },
      "readOnly": false
    },
    {
      "name": "get_venue_directions",
      "description": "Returns navigation links and address for the PokéCity convention venue.",
      "inputSchema": {},
      "readOnly": true
    },
    {
      "name": "enter_raffle",
      "description": "Register a person for the PokéCity convention raffle. Requires their name.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Full name of the person entering the raffle"
          }
        },
        "required": ["name"]
      },
      "readOnly": false
    }
  ]
}
