{
  "schema_version": "1.0",
  "name": "InfinitusNow WebMCP Server",
  "description": "Official WebMCP server endpoint for InfinitusNow AI visibility intelligence",
  "publisher": {
    "name": "InfinitusNow",
    "url": "https://www.infinitusnow.com"
  },
  "endpoints": [
    {
      "type": "json-rpc",
      "url": "/api/mcp",
      "methods": [
        "POST"
      ]
    }
  ],
  "capabilities": {
    "tools": true,
    "resources": true,
    "prompts": true
  },
  "auth": {
    "type": "none"
  },
  "tools": [
    {
      "name": "get_services",
      "description": "Returns InfinitusNow's canonical AI transformation and visibility consulting capabilities.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "get_contact",
      "description": "Returns InfinitusNow's structured corporate contact and booking endpoints.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "get_related_services",
      "description": "Returns services related to a specific category (assessment, geo, aeo, seo, aao, dip).",
      "inputSchema": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string",
            "enum": [
              "assessment",
              "geo",
              "aeo",
              "seo",
              "aao",
              "dip"
            ],
            "description": "Service category to filter by"
          }
        },
        "required": [
          "category"
        ]
      }
    },
    {
      "name": "calculate_dip_score_estimate",
      "description": "Recommends a DIP telemetry subscription tier from a monthly budget. It does not estimate a visibility score from budget alone; actual scores require current engine evidence.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "budget": {
            "type": "number",
            "description": "Monthly digital marketing / growth budget in SGD"
          },
          "industry": {
            "type": "string",
            "description": "Industry sector (e.g. Healthcare, Financial Services, B2B SaaS, Professional Services, Logistics)"
          }
        },
        "required": [
          "budget"
        ]
      }
    },
    {
      "name": "submit_lead_inquiry",
      "description": "Submits a business lead inquiry or requests an assessment consultation. Note: automated programmatic submission is subject to human governance verification.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Contact name"
          },
          "email": {
            "type": "string",
            "description": "Contact email address"
          },
          "company": {
            "type": "string",
            "description": "Company name"
          },
          "message": {
            "type": "string",
            "description": "Inquiry message or assessment request details"
          }
        },
        "required": [
          "name",
          "email"
        ]
      }
    }
  ]
}
