{
  "name": "Globetrotters Readiness",
  "description": "Check how AI-ready any travel website is, and query the global AI-readiness benchmark — by Globetrotters.",
  "protocolVersion": "2025-03-26",
  "transport": "streamable-http",
  "endpoint": "https://mcp.globetrotters.ai/readiness",
  "auth": { "type": "none" },
  "serverInfo": {
    "name": "globetrotters-readiness",
    "version": "0.1.0",
    "provider": "Globetrotters"
  },
  "capabilities": { "tools": { "listChanged": false } },
  "tools": [
    {
      "name": "check_readiness",
      "description": "Check how AI-ready a travel website is — how well an AI agent can read, understand, and act on it. Returns Globetrotters' readiness score, band, per-pillar breakdown, and the top issues to fix, plus a link to the full public report. If a recent audit already exists it is returned instantly; otherwise a new audit is started and you must poll get_audit_status (a cold audit takes a minute or two). Always show the user the report link.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "domain": {
            "type": "string",
            "description": "The website domain to audit, e.g. 'visitnantes.com'. A bare hostname or full URL both work."
          }
        },
        "required": ["domain"]
      },
      "annotations": { "readOnlyHint": true }
    },
    {
      "name": "get_audit_status",
      "description": "Poll the status of an audit started by check_readiness. Returns 'queued' or 'running' with progress while the audit is in flight, or the full readiness summary once 'completed'. Audits can take a minute or two — wait ~20-30 seconds between polls.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "auditId": {
            "type": "string",
            "description": "The auditId returned by check_readiness."
          }
        },
        "required": ["auditId"]
      },
      "annotations": { "readOnlyHint": true }
    },
    {
      "name": "get_benchmark_summary",
      "description": "Get global AI-readiness benchmark stats across all audited travel organizations: total count, average score, and adoption rates for key signals (llms.txt, schema.org types, action-readiness). Use this for 'how AI-ready is the travel industry?' style questions.",
      "inputSchema": { "type": "object", "properties": {} },
      "annotations": { "readOnlyHint": true }
    },
    {
      "name": "get_benchmark_cohort",
      "description": "Get the AI-readiness leaderboard. With no arguments, returns a per-country overview (average score, top organization, band distribution). With a 'country' (ISO 3166-1 alpha-2 code, e.g. 'FR'), returns that country's cohort stats.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "country": {
            "type": "string",
            "description": "Optional ISO 3166-1 alpha-2 country code, e.g. 'FR', 'US'."
          }
        }
      },
      "annotations": { "readOnlyHint": true }
    }
  ]
}
