{
  "name": "throwaway",
  "description": "Web discovery metadata for throwaway validation tools. Browser WebMCP support is experimental; headless agents should use the REST OpenAPI contract or MCP endpoint.",
  "url": "https://throwaway.sslboard.com",
  "openapi": "https://throwaway.sslboard.com/openapi.json",
  "mcp": {
    "server": "https://throwaway.sslboard.com/.well-known/mcp-server.json",
    "endpoint": "https://throwaway.sslboard.com/mcp",
    "transport": "streamable-http",
    "authentication": "none"
  },
  "tools": [
    {
      "name": "check_email",
      "description": "Validate one email address.",
      "inputSchema": {
        "type": "object",
        "required": [
          "email"
        ],
        "properties": {
          "email": {
            "type": "string"
          }
        }
      }
    },
    {
      "name": "check_domain",
      "description": "Validate one domain.",
      "inputSchema": {
        "type": "object",
        "required": [
          "domain"
        ],
        "properties": {
          "domain": {
            "type": "string"
          }
        }
      }
    },
    {
      "name": "batch_check_emails",
      "description": "Validate up to 1000 email addresses.",
      "inputSchema": {
        "type": "object",
        "required": [
          "emails"
        ],
        "properties": {
          "emails": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "maxItems": 1000
          }
        }
      }
    },
    {
      "name": "batch_check_domains",
      "description": "Validate up to 1000 domains.",
      "inputSchema": {
        "type": "object",
        "required": [
          "domains"
        ],
        "properties": {
          "domains": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "maxItems": 1000
          }
        }
      }
    },
    {
      "name": "get_stats",
      "description": "Return bloom-filter metadata.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    }
  ]
}
