{
    "schema_version": "2025-11-05",
    "name": "SECRET SOCIETY",
    "description": "SECRET SOCIETY — portal de contenidos",
    "url": "https://secretsociety.es/",
    "language": "es",
    "contact": {
        "url": "https://secretsociety.es/contacto/"
    },
    "tools": [
        {
            "name": "search_content",
            "description": "Busca artículos en SECRET SOCIETY por palabras clave.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "query": {
                        "type": "string",
                        "description": "Términos de búsqueda"
                    },
                    "limit": {
                        "type": "integer",
                        "description": "Nº de resultados (máx 10)",
                        "default": 5
                    }
                },
                "required": [
                    "query"
                ]
            },
            "endpoint": {
                "method": "GET",
                "url": "https://secretsociety.es/?s={query}&posts_per_page={limit}"
            }
        },
        {
            "name": "get_article",
            "description": "Obtiene el contenido completo de un artículo por su URL.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "url": {
                        "type": "string",
                        "format": "uri",
                        "description": "URL del artículo"
                    }
                },
                "required": [
                    "url"
                ]
            },
            "endpoint": {
                "method": "GET",
                "url": "{url}",
                "hint": "Parse article body from main content area"
            }
        },
        {
            "name": "list_by_category",
            "description": "Lista artículos recientes de una categoría.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "category": {
                        "type": "string",
                        "description": "Slug de categoría",
                        "enum": {
                            "0": "aliens",
                            "1": "arqueologia",
                            "2": "arqueologia-oculta",
                            "3": "astronomia",
                            "4": "ciencia-y-futuro",
                            "5": "conspiraciones",
                            "6": "cultura",
                            "7": "educacion",
                            "8": "esoterismo",
                            "9": "espiritualidad",
                            "10": "exociencia-y-extraterrestres",
                            "11": "exopolitica",
                            "12": "exploracion",
                            "13": "extraterrestres",
                            "14": "fenomeno-ovni",
                            "15": "fenomenos-paranormales",
                            "16": "historia",
                            "18": "misterio",
                            "19": "misticismo",
                            "20": "negocios"
                        }
                    },
                    "limit": {
                        "type": "integer",
                        "default": 10,
                        "maximum": 20
                    }
                },
                "required": [
                    "category"
                ]
            },
            "endpoint": {
                "method": "GET",
                "url": "https://secretsociety.es/categoria/{category}/"
            }
        },
        {
            "name": "get_site_info",
            "description": "Devuelve metadatos del sitio: nombre, descripción, categorías disponibles, URL de llms.txt.",
            "inputSchema": {
                "type": "object",
                "properties": []
            },
            "output": {
                "name": "SECRET SOCIETY",
                "description": "",
                "url": "https://secretsociety.es/",
                "language": "es",
                "categories": {
                    "0": {
                        "name": "Aliens",
                        "slug": "aliens",
                        "count": 8
                    },
                    "1": {
                        "name": "Arqueología",
                        "slug": "arqueologia",
                        "count": 1
                    },
                    "2": {
                        "name": "ARQUEOLOGÍA OCULTA",
                        "slug": "arqueologia-oculta",
                        "count": 0
                    },
                    "3": {
                        "name": "Astronomía",
                        "slug": "astronomia",
                        "count": 5
                    },
                    "4": {
                        "name": "CIENCIA Y FUTURO",
                        "slug": "ciencia-y-futuro",
                        "count": 2
                    },
                    "5": {
                        "name": "Conspiraciones",
                        "slug": "conspiraciones",
                        "count": 1
                    },
                    "6": {
                        "name": "Cultura",
                        "slug": "cultura",
                        "count": 1
                    },
                    "7": {
                        "name": "Educación",
                        "slug": "educacion",
                        "count": 6
                    },
                    "8": {
                        "name": "Esoterismo",
                        "slug": "esoterismo",
                        "count": 3
                    },
                    "9": {
                        "name": "Espiritualidad",
                        "slug": "espiritualidad",
                        "count": 2
                    },
                    "10": {
                        "name": "EXOCIENCIA Y EXTRATERRESTRES",
                        "slug": "exociencia-y-extraterrestres",
                        "count": 0
                    },
                    "11": {
                        "name": "Exopolítica",
                        "slug": "exopolitica",
                        "count": 1
                    },
                    "12": {
                        "name": "Exploración",
                        "slug": "exploracion",
                        "count": 2
                    },
                    "13": {
                        "name": "Extraterrestres",
                        "slug": "extraterrestres",
                        "count": 1
                    },
                    "14": {
                        "name": "Fenómeno OVNI",
                        "slug": "fenomeno-ovni",
                        "count": 1
                    },
                    "15": {
                        "name": "FENÓMENOS PARANORMALES",
                        "slug": "fenomenos-paranormales",
                        "count": 0
                    },
                    "16": {
                        "name": "Historia",
                        "slug": "historia",
                        "count": 12
                    },
                    "18": {
                        "name": "MISTERIO",
                        "slug": "misterio",
                        "count": 4
                    },
                    "19": {
                        "name": "misticismo",
                        "slug": "misticismo",
                        "count": 1
                    },
                    "20": {
                        "name": "Negocios",
                        "slug": "negocios",
                        "count": 1
                    }
                },
                "llms_txt": "https://secretsociety.es/llms.txt",
                "llms_full": "https://secretsociety.es/llms-full.txt"
            }
        }
    ],
    "resources": [
        {
            "name": "llms.txt",
            "url": "https://secretsociety.es/llms.txt",
            "description": "Índice resumido del sitio para LLMs"
        },
        {
            "name": "llms-full.txt",
            "url": "https://secretsociety.es/llms-full.txt",
            "description": "Contenido completo del sitio para LLMs"
        }
    ],
    "permissions": {
        "read": true,
        "write": false,
        "commerce": false
    },
    "crawl_policy": {
        "allow_training": false,
        "allow_indexing": true,
        "attribution": "Cita requerida: \"SECRET SOCIETY (https://secretsociety.es/)\""
    }
}