{
  "name": "Rooster Agent Gateway",
  "description": "Read-only discovery + booking directory of verified real-world businesses for AI agents. One connection reaches every listed business.",
  "url": "https://roosteragents.ai/gateway/",
  "version": "1.0",
  "provider": {
    "organization": "Rooster Agents",
    "url": "https://roosteragents.ai"
  },
  "capabilities": {
    "streaming": false,
    "actions": [
      "discover",
      "get_business",
      "booking_action"
    ]
  },
  "authentication": {
    "schemes": [
      "none"
    ],
    "note": "Read/discovery is open. Transactional booking + payment settlement is a gated, authenticated capability (roadmap)."
  },
  "skills": [
    {
      "id": "discover_businesses",
      "name": "Discover businesses",
      "description": "Return matching verified businesses by category, city, service area or rating.",
      "input": {
        "category": "string?",
        "city": "string?",
        "service_area": "string?",
        "min_rating": "number?"
      },
      "endpoint": "https://roosteragents.ai/gateway/directory.json"
    },
    {
      "id": "get_business",
      "name": "Get business",
      "description": "Return one business's full structured data (schema.org @graph), agent manifest and booking_action.",
      "input": {
        "id": "string"
      },
      "endpoint": "https://roosteragents.ai/gateway/businesses/{id}.json"
    },
    {
      "id": "book",
      "name": "Booking action",
      "description": "Each business exposes a ReserveAction target the agent can hand the user to complete a booking.",
      "input": {
        "id": "string"
      },
      "status": "read-only handoff in v1"
    }
  ],
  "documentation": "https://roosteragents.ai/gateway/llms.txt"
}