{
  "name": "AgentVisible",
  "description": "Agent-readiness scanner. Stateless HTTP-compatible tool metadata for agents.",
  "version": "0.1.0",
  "homepage": "https://agentvisible.io",
  "tools": [
    {
      "name": "scan_site",
      "description": "Scan a public website for agent-readiness signals.",
      "input_schema": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string"
          }
        },
        "required": [
          "url"
        ]
      },
      "endpoint": "https://agentvisible.io/api/scan?url={url}"
    },
    {
      "name": "generate_fix_pack",
      "description": "Generate draft agent-readiness assets for a public website.",
      "input_schema": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string"
          }
        },
        "required": [
          "url"
        ]
      },
      "endpoint": "https://agentvisible.io/api/fix-pack?url={url}"
    }
  ]
}