{
  "$schema": "https://modelcontextprotocol.io/schema/2025-06/server-card.json",
  "serverInfo": {
    "name": "victoralexeev-public",
    "version": "1.0.0",
    "title": "Life Retreat Public Tools",
    "description": "Read-only content tools and a consent-gated consultation intake for Life Retreat (Victor Alexeev).",
    "publisher": {
      "name": "Life Retreat",
      "url": "https://victoralexeev.com",
      "contact": "info@victoralexeev.com"
    }
  },
  "transport": {
    "type": "http",
    "endpoint": "https://victoralexeev-com.pages.dev/mcp",
    "protocolVersion": "2025-06-18",
    "comment": "LIVE — Streamable HTTP. POST JSON-RPC 2.0 to /mcp. GET returns this card. Supports initialize, tools/list, tools/call, resources/list, resources/read, ping."
  },
  "capabilities": {
    "tools": [
      {
        "name": "list_retreats",
        "description": "List the Life Retreat transformation retreats (standard, corporate, VIP) with titles and URLs.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "language": {
              "type": "string",
              "enum": [
                "ro",
                "en",
                "ru"
              ],
              "description": "Content language (default ro)."
            }
          },
          "additionalProperties": false
        }
      },
      {
        "name": "list_guides",
        "description": "List the plant-medicine and preparation guides (Ayahuasca, Kambo, San Pedro, magic mushrooms, diet).",
        "inputSchema": {
          "type": "object",
          "properties": {
            "language": {
              "type": "string",
              "enum": [
                "ro",
                "en",
                "ru"
              ]
            }
          },
          "additionalProperties": false
        }
      },
      {
        "name": "get_page",
        "description": "Get the title, description and canonical URL of a specific retreat, guide or session by its id.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "id": {
              "type": "string",
              "description": "The content id, e.g. \"retreats-ro_vip-retreat-ro\"."
            }
          },
          "required": [
            "id"
          ],
          "additionalProperties": false
        }
      },
      {
        "name": "search_content",
        "description": "Search retreats, guides and sessions by keyword. Returns matching pages with URLs.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "query": {
              "type": "string",
              "description": "Search keywords."
            },
            "language": {
              "type": "string",
              "enum": [
                "ro",
                "en",
                "ru"
              ]
            }
          },
          "required": [
            "query"
          ],
          "additionalProperties": false
        }
      },
      {
        "name": "submit_consultation",
        "description": "Submit a consultation request (lead) for a Life Retreat program. Requires the visitor's consent; forwards name and contact to the intake pipeline (/api/lead).",
        "inputSchema": {
          "type": "object",
          "properties": {
            "name": {
              "type": "string"
            },
            "email": {
              "type": "string",
              "format": "email"
            },
            "phone": {
              "type": "string"
            },
            "message": {
              "type": "string"
            },
            "language": {
              "type": "string",
              "enum": [
                "ro",
                "en",
                "ru"
              ]
            }
          },
          "required": [
            "name"
          ],
          "additionalProperties": false
        }
      }
    ],
    "resources": [
      {
        "uri": "https://victoralexeev.com/llms.txt",
        "name": "llms.txt",
        "description": "Agent-oriented site guide.",
        "mimeType": "text/plain"
      },
      {
        "uri": "https://victoralexeev.com/sitemap.xml",
        "name": "sitemap",
        "description": "Full URL sitemap.",
        "mimeType": "application/xml"
      }
    ]
  }
}