{
    "schema_version": "2025-11-05",
    "name": "ALPINALIA",
    "description": "Revista del Deporte y la Vida Saludable",
    "url": "https://alpinalia.com/",
    "language": "es",
    "contact": {
        "url": "https://alpinalia.com/contacto/"
    },
    "tools": [
        {
            "name": "search_content",
            "description": "Busca artículos en ALPINALIA 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://alpinalia.com/?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": "alpinismo",
                            "1": "barranquismo",
                            "2": "deporte-y-montana",
                            "4": "esqui",
                            "5": "ideas-y-negocios",
                            "6": "informacion-de-interes",
                            "7": "montanismo",
                            "8": "portada",
                            "9": "running",
                            "10": "trekking",
                            "11": "vida-saludable"
                        }
                    },
                    "limit": {
                        "type": "integer",
                        "default": 10,
                        "maximum": 20
                    }
                },
                "required": [
                    "category"
                ]
            },
            "endpoint": {
                "method": "GET",
                "url": "https://alpinalia.com/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": "ALPINALIA",
                "description": "Revista del Deporte y la Vida Saludable",
                "url": "https://alpinalia.com/",
                "language": "es",
                "categories": {
                    "0": {
                        "name": "Alpinismo",
                        "slug": "alpinismo",
                        "count": 1
                    },
                    "1": {
                        "name": "Barranquismo",
                        "slug": "barranquismo",
                        "count": 1
                    },
                    "2": {
                        "name": "Deporte y montaña",
                        "slug": "deporte-y-montana",
                        "count": 0
                    },
                    "4": {
                        "name": "Esquí",
                        "slug": "esqui",
                        "count": 2
                    },
                    "5": {
                        "name": "Ideas y Negocios",
                        "slug": "ideas-y-negocios",
                        "count": 41
                    },
                    "6": {
                        "name": "Información de interés",
                        "slug": "informacion-de-interes",
                        "count": 1
                    },
                    "7": {
                        "name": "Montañismo",
                        "slug": "montanismo",
                        "count": 2
                    },
                    "8": {
                        "name": "Portada",
                        "slug": "portada",
                        "count": 46
                    },
                    "9": {
                        "name": "Running",
                        "slug": "running",
                        "count": 1
                    },
                    "10": {
                        "name": "Trekking",
                        "slug": "trekking",
                        "count": 4
                    },
                    "11": {
                        "name": "Vida saludable",
                        "slug": "vida-saludable",
                        "count": 10
                    }
                },
                "llms_txt": "https://alpinalia.com/llms.txt",
                "llms_full": "https://alpinalia.com/llms-full.txt"
            }
        }
    ],
    "resources": [
        {
            "name": "llms.txt",
            "url": "https://alpinalia.com/llms.txt",
            "description": "Índice resumido del sitio para LLMs"
        },
        {
            "name": "llms-full.txt",
            "url": "https://alpinalia.com/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: \"ALPINALIA (https://alpinalia.com/)\""
    }
}