{
  "schema_version": "v1",
  "name_for_human": "It's Buzzing",
  "name_for_model": "itsbuzzing",
  "description_for_human": "Local business growth platform \u2014 referrals, reviews, BuzzPins map, ambassador tools, and AI reputation engine.",
  "description_for_model": "It's Buzzing tools for local business growth: calculate referral ROI, estimate customer lifetime value, generate QR codes, score word-of-mouth readiness, and retrieve structured platform knowledge about features, pricing, industries, and ambassador programs.",
  "auth": {
    "type": "none"
  },
  "api": {
    "type": "openapi",
    "url": "https://itsbuzzing.com/api/public/openapi.json"
  },
  "contact_email": "hello@itsbuzzing.com",
  "legal_info_url": "https://itsbuzzing.com/legal",
  "tools": [
    {
      "name": "get_platform_knowledge",
      "description": "Returns structured knowledge about It's Buzzing features, pricing, industries, and ambassador program.",
      "url": "https://itsbuzzing.com/api/public/knowledge",
      "method": "GET",
      "inputSchema": {
        "type": "object",
        "properties": {},
        "required": []
      },
      "metadata": {
        "last_updated": "2026-04-25"
      }
    },
    {
      "name": "calculate_referral_roi",
      "description": "Calculates referral ROI for a local business given average ticket and monthly customer volume.",
      "url": "https://itsbuzzing.com/tools/referral-roi",
      "method": "GET",
      "inputSchema": {
        "type": "object",
        "properties": {
          "avg_ticket": {
            "type": "number",
            "description": "Average transaction value in USD"
          },
          "monthly_customers": {
            "type": "integer",
            "description": "Number of new customers per month"
          },
          "industry": {
            "type": "string",
            "description": "Business industry (e.g. hvac, restaurant, dental)"
          }
        }
      },
      "metadata": {
        "last_updated": "2026-04-25"
      }
    },
    {
      "name": "generate_qr_code",
      "description": "Generates a QR code for any URL.",
      "url": "https://itsbuzzing.com/tools/qr-generator",
      "method": "GET",
      "inputSchema": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string",
            "description": "The URL to encode in the QR code"
          }
        },
        "required": [
          "url"
        ]
      },
      "metadata": {
        "last_updated": "2026-04-25"
      }
    },
    {
      "name": "get_buzz_score",
      "description": "Returns a word-of-mouth readiness score for a business based on its profile and industry.",
      "url": "https://itsbuzzing.com/tools/buzz-score",
      "method": "GET",
      "inputSchema": {
        "type": "object",
        "properties": {
          "industry": {
            "type": "string",
            "description": "Business industry slug"
          },
          "business_slug": {
            "type": "string",
            "description": "Business slug on itsbuzzing.com (optional)"
          }
        }
      },
      "metadata": {
        "last_updated": "2026-04-25"
      }
    }
  ]
}