{
  "$schema": "https://modelcontextprotocol.io/schema.json",
  "name": "fusionhub-mcp",
  "version": "1.0.0",
  "protocolVersion": "2024-11-05",
  "description": "FUSIONHUB Model Context Protocol (MCP) Server for Claude, ChatGPT, Cursor, and Autonomous AI Agents.",
  "transport": {
    "type": "http",
    "url": "https://www.fusionhub.in/api/mcp",
    "sseUrl": "https://www.fusionhub.in/api/mcp/sse"
  },
  "vendor": {
    "name": "FUSIONHUB",
    "legalName": "TANMAY CHAUDHARY",
    "url": "https://www.fusionhub.in",
    "contact": "support@fusionhub.in"
  },
  "capabilities": {
    "tools": [
      {
        "name": "query_services",
        "description": "Get detailed specifications, tech stack, and starting prices for FUSIONHUB's 5 services (portfolio, ecommerce, blog, webapp, discord-bot).",
        "inputSchema": {
          "type": "object",
          "properties": {
            "service_slug": {
              "type": "string",
              "enum": ["portfolio", "ecommerce", "blog", "webapp", "discord-bot", "all"],
              "description": "The service tier to inspect."
            }
          }
        }
      },
      {
        "name": "estimate_pricing",
        "description": "Calculate project cost estimates in INR and USD based on service type and package tier.",
        "inputSchema": {
          "type": "object",
          "required": ["service_type"],
          "properties": {
            "service_type": {
              "type": "string",
              "enum": ["portfolio", "ecommerce", "blog", "webapp", "discord-bot"]
            },
            "tier": {
              "type": "string",
              "enum": ["starter", "professional", "premium"]
            }
          }
        }
      },
      {
        "name": "read_reviews",
        "description": "Fetch real client ratings and verified buyer reviews from Xata PostgreSQL.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "limit": { "type": "integer", "default": 10 }
          }
        }
      },
      {
        "name": "get_company_info",
        "description": "Retrieve official company identity, legal entity, NAP profile, and SLA guarantees for FUSIONHUB.",
        "inputSchema": {
          "type": "object",
          "properties": {}
        }
      }
    ]
  }
}
