{
  "name": "apacfinstab",
  "version": "1.0.0",
  "description": "APAC FINSTAB - Crypto regulatory intelligence for Asia-Pacific regions",
  "homepage": "https://apacfinstab.com",
  "capabilities": {
    "tools": {}
  },
  "tools": [
    {
      "name": "getLatestPolicies",
      "description": "Get latest crypto policy events from APAC regions. Returns policy news, regulatory changes, and compliance updates.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "region": {
            "type": "string",
            "description": "ISO country code (HK, SG, JP, KR, AU, CN, IN, TH, ID, VN, PH, MY, TW)",
            "enum": [
              "HK",
              "SG",
              "JP",
              "KR",
              "AU",
              "CN",
              "IN",
              "TH",
              "ID",
              "VN",
              "PH",
              "MY",
              "TW"
            ]
          },
          "topic": {
            "type": "string",
            "description": "Policy topic filter",
            "enum": [
              "Stablecoin",
              "Exchange",
              "DeFi",
              "ETF",
              "Licensing",
              "Taxation",
              "CBDC",
              "Tokenization",
              "Regulation"
            ]
          },
          "days": {
            "type": "number",
            "description": "Events from last N days (default: 30)",
            "default": 30
          }
        }
      }
    },
    {
      "name": "getRegionOverview",
      "description": "Get comprehensive regulatory overview for a specific APAC region including licensing requirements, stablecoin rules, and compliance framework.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "region": {
            "type": "string",
            "description": "ISO country code",
            "enum": [
              "HK",
              "SG",
              "JP",
              "KR",
              "AU",
              "CN",
              "IN",
              "TH",
              "ID",
              "VN",
              "PH",
              "MY",
              "TW"
            ]
          }
        },
        "required": [
          "region"
        ]
      }
    },
    {
      "name": "comparePolicies",
      "description": "Compare crypto policies across multiple APAC regions for a specific topic.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "regions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Array of region codes to compare (2-5 regions)",
            "minItems": 2,
            "maxItems": 5
          },
          "topic": {
            "type": "string",
            "description": "Topic to compare",
            "enum": [
              "Stablecoin",
              "Exchange",
              "DeFi",
              "ETF",
              "Licensing"
            ]
          }
        },
        "required": [
          "regions",
          "topic"
        ]
      }
    },
    {
      "name": "checkCompliance",
      "description": "Check compliance requirements for a business model in specific APAC regions.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "businessType": {
            "type": "string",
            "description": "Type of crypto business",
            "enum": [
              "exchange",
              "stablecoin_issuer",
              "defi_protocol",
              "custodian",
              "payment_service"
            ]
          },
          "targetRegions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Target regions for compliance check"
          }
        },
        "required": [
          "businessType",
          "targetRegions"
        ]
      }
    }
  ]
}