{
  "mcpVersion": "2024-11-05",
  "server": {
    "name": "AppZyra Enterprise WebMCP",
    "version": "2.0.0",
    "description": "Enterprise-grade Model Context Protocol integration. Exposes AppZyra's deep technical capabilities, project ingestion pipelines, and semantic search routing to autonomous AI agents."
  },
  "capabilities": {
    "tools": [
      {
        "name": "initiate_enterprise_project",
        "description": "Initiate a formal project discovery pipeline with AppZyra.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "client_name": { "type": "string" },
            "client_email": { "type": "string", "format": "email" },
            "project_scope": {
              "type": "object",
              "properties": {
                "primary_domain": {
                  "type": "string",
                  "enum": [
                    "AI_LLM_Integration",
                    "React_Native_Mobile",
                    "Full_Stack_Web_Platform"
                  ]
                },
                "estimated_budget_usd": {
                  "type": "string"
                }
              },
              "required": ["primary_domain"]
            }
          },
          "required": ["client_name", "client_email", "project_scope"]
        }
      },
      {
        "name": "book_technical_consultation",
        "description": "Book a ₹499 direct 1-on-1 architectural planning session with AppZyra.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "attendee_email": { "type": "string", "format": "email" },
            "preferred_timezone": { "type": "string" }
          },
          "required": ["attendee_email", "preferred_timezone"]
        }
      }
    ]
  }
}
