{
  "protocolVersion": "2024-11-05",
  "serverName": "are-we-agent-ready",
  "serverVersion": "1.0.0",
  "description": "Audit the Agent Readiness of any public website.",
  "vendor": {
    "name": "Are We Agent Ready?",
    "url": "https://areweagentready.com/"
  },
  "capabilities": {
    "tools": [
      {
        "name": "run_scan",
        "description": "Queue an Agent Readiness audit for a URL. Returns a scan_id.",
        "inputSchema": {
          "type": "object",
          "required": ["url"],
          "properties": {
            "url": { "type": "string", "format": "uri" },
            "competitor_url": { "type": "string", "format": "uri" }
          }
        },
        "endpoint": "https://areweagentready.com/api/scans",
        "method": "POST"
      },
      {
        "name": "get_scan",
        "description": "Fetch the current state of a scan (running | completed | failed) with full findings.",
        "inputSchema": {
          "type": "object",
          "required": ["id"],
          "properties": { "id": { "type": "string" } }
        },
        "endpoint": "https://areweagentready.com/api/scans/{id}",
        "method": "GET"
      }
    ]
  }
}
