{
    "schema_version": "2025-11-05",
    "name": "REVISTA DECORACIÓN Y REFORMAS®",
    "description": "REVISTA DECORACIÓN Y REFORMAS® — portal de contenidos",
    "url": "https://decoracionyreformas.net/",
    "language": "es",
    "contact": {
        "url": "https://decoracionyreformas.net/contacto/"
    },
    "tools": [
        {
            "name": "search_content",
            "description": "Busca artículos en REVISTA DECORACIÓN Y REFORMAS® 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://decoracionyreformas.net/?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": [
                            "consejos-para-tu-reforma",
                            "empresas-y-negocios",
                            "hogar",
                            "ideas",
                            "novedades-y-tendencias",
                            "estilo-de-vida"
                        ]
                    },
                    "limit": {
                        "type": "integer",
                        "default": 10,
                        "maximum": 20
                    }
                },
                "required": [
                    "category"
                ]
            },
            "endpoint": {
                "method": "GET",
                "url": "https://decoracionyreformas.net/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": "REVISTA DECORACIÓN Y REFORMAS®",
                "description": "",
                "url": "https://decoracionyreformas.net/",
                "language": "es",
                "categories": [
                    {
                        "name": "Consejos para tu reforma",
                        "slug": "consejos-para-tu-reforma",
                        "count": 112
                    },
                    {
                        "name": "Empresas y Negocios",
                        "slug": "empresas-y-negocios",
                        "count": 894
                    },
                    {
                        "name": "Hogar",
                        "slug": "hogar",
                        "count": 10
                    },
                    {
                        "name": "Ideas",
                        "slug": "ideas",
                        "count": 31
                    },
                    {
                        "name": "Novedades y Tendencias",
                        "slug": "novedades-y-tendencias",
                        "count": 38
                    },
                    {
                        "name": "Tu estilo de vida",
                        "slug": "estilo-de-vida",
                        "count": 21
                    }
                ],
                "llms_txt": "https://decoracionyreformas.net/llms.txt",
                "llms_full": "https://decoracionyreformas.net/llms-full.txt"
            }
        }
    ],
    "resources": [
        {
            "name": "llms.txt",
            "url": "https://decoracionyreformas.net/llms.txt",
            "description": "Índice resumido del sitio para LLMs"
        },
        {
            "name": "llms-full.txt",
            "url": "https://decoracionyreformas.net/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: \"REVISTA DECORACIÓN Y REFORMAS® (https://decoracionyreformas.net/)\""
    }
}