{
    "schema_version": "2025-11-05",
    "name": "Revista IMPULSO EMPRESA",
    "description": "Revista IMPULSO EMPRESA — portal de contenidos",
    "url": "https://impulsoempresa.es/",
    "language": "es",
    "contact": {
        "url": "https://impulsoempresa.es/contacto/"
    },
    "tools": [
        {
            "name": "search_content",
            "description": "Busca artículos en Revista IMPULSO EMPRESA 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://impulsoempresa.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": [
                            "actualidad-empresarial",
                            "estilo-de-vida",
                            "ideas-y-negocios",
                            "tendencias-y-novedades"
                        ]
                    },
                    "limit": {
                        "type": "integer",
                        "default": 10,
                        "maximum": 20
                    }
                },
                "required": [
                    "category"
                ]
            },
            "endpoint": {
                "method": "GET",
                "url": "https://impulsoempresa.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": "Revista IMPULSO EMPRESA",
                "description": "",
                "url": "https://impulsoempresa.es/",
                "language": "es",
                "categories": [
                    {
                        "name": "Actualidad empresarial",
                        "slug": "actualidad-empresarial",
                        "count": 3051
                    },
                    {
                        "name": "Estilo de vida",
                        "slug": "estilo-de-vida",
                        "count": 58
                    },
                    {
                        "name": "Ideas y negocios",
                        "slug": "ideas-y-negocios",
                        "count": 31
                    },
                    {
                        "name": "Tendencias y novedades",
                        "slug": "tendencias-y-novedades",
                        "count": 43
                    }
                ],
                "llms_txt": "https://impulsoempresa.es/llms.txt",
                "llms_full": "https://impulsoempresa.es/llms-full.txt"
            }
        }
    ],
    "resources": [
        {
            "name": "llms.txt",
            "url": "https://impulsoempresa.es/llms.txt",
            "description": "Índice resumido del sitio para LLMs"
        },
        {
            "name": "llms-full.txt",
            "url": "https://impulsoempresa.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: \"Revista IMPULSO EMPRESA (https://impulsoempresa.es/)\""
    }
}