{
    "schema_version": "2025-11-05",
    "name": "PORTAL MASAJES",
    "description": "Artículos de interés del mundo de los masajes ✔️ Notas de prensa, noticias corporativas y otra información de interés relativa a los MASAJES.",
    "url": "https://portalmasajes.com/",
    "language": "es",
    "contact": {
        "url": "https://portalmasajes.com/contacto/"
    },
    "tools": [
        {
            "name": "search_content",
            "description": "Busca artículos en PORTAL MASAJES 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://portalmasajes.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": [
                            "editorial-vida-saludable",
                            "masajes",
                            "otros-articulos-de-vida-saludable",
                            "portada"
                        ]
                    },
                    "limit": {
                        "type": "integer",
                        "default": 10,
                        "maximum": 20
                    }
                },
                "required": [
                    "category"
                ]
            },
            "endpoint": {
                "method": "GET",
                "url": "https://portalmasajes.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": "PORTAL MASAJES",
                "description": "Artículos de interés del mundo de los masajes ✔️ Notas de prensa, noticias corporativas y otra información de interés relativa a los MASAJES.",
                "url": "https://portalmasajes.com/",
                "language": "es",
                "categories": [
                    {
                        "name": "EDITORIAL VIDA SALUDABLE",
                        "slug": "editorial-vida-saludable",
                        "count": 54
                    },
                    {
                        "name": "MASAJES",
                        "slug": "masajes",
                        "count": 18
                    },
                    {
                        "name": "OTROS ARTÍCULOS DE VIDA SALUDABLE",
                        "slug": "otros-articulos-de-vida-saludable",
                        "count": 4
                    },
                    {
                        "name": "PORTADA",
                        "slug": "portada",
                        "count": 56
                    }
                ],
                "llms_txt": "https://portalmasajes.com/llms.txt",
                "llms_full": "https://portalmasajes.com/llms-full.txt"
            }
        }
    ],
    "resources": [
        {
            "name": "llms.txt",
            "url": "https://portalmasajes.com/llms.txt",
            "description": "Índice resumido del sitio para LLMs"
        },
        {
            "name": "llms-full.txt",
            "url": "https://portalmasajes.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: \"PORTAL MASAJES (https://portalmasajes.com/)\""
    }
}