{
  "spec": "webmcp/0.1",
  "tools": [
    {
      "name": "trigger_scan",
      "description": "Trigger a new AI search visibility and SEO audit scan for a website URL on Crawlit.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string",
            "format": "uri",
            "description": "The absolute URL of the website to audit (e.g. https://example.com)"
          }
        },
        "required": ["url"]
      }
    },
    {
      "name": "get_scan_results",
      "description": "Retrieve the completed scan results, including overall score, pillar scores, and detailed findings.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string",
            "format": "uuid",
            "description": "The unique UUID of the scan to retrieve."
          }
        },
        "required": ["uuid"]
      }
    }
  ]
}