{
  "name": "Reliable Bibles",
  "description": "Authentic autographed Bibles with history. $69 each.",
  "version": "0.0.1",
  "domains": [
    "https://reliablebibles.com",
    "https://bibles.platphormnews.com"
  ],
  "resources": {
    "llms_txt": "/llms.txt",
    "llms_full": "/llms-full.txt",
    "sitemap": "/sitemap.xml",
    "rss": "/rss.xml",
    "api_docs": "/api/docs",
    "health": "/api/health",
    "ai_plugin": "/.well-known/ai-plugin.json"
  },
  "api": {
    "base_url": "/api/v1",
    "authentication": {
      "type": "api_key",
      "header": "x-api-key"
    },
    "mcp": {
      "endpoint": "/api/mcp",
      "method": "POST",
      "actions": [
        "list_bibles",
        "get_bible",
        "create_bible",
        "update_bible",
        "delete_bible",
        "mark_sold",
        "search_bibles",
        "bulk_create",
        "bulk_update",
        "get_stats",
        "get_publishers",
        "get_conditions"
      ]
    }
  },
  "schema": {
    "bible": {
      "id": "uuid",
      "title": "string",
      "description": "string",
      "price": "number",
      "image_url": "string | null",
      "condition": "string | null",
      "year": "string | null",
      "publisher": "string | null",
      "special_features": "string | null",
      "sold": "boolean",
      "created_at": "timestamp"
    }
  },
  "locales": [
    "en",
    "es"
  ],
  "contact": {
    "website": "https://reliablebibles.com"
  }
}