{
    "schema_version": "2025-11-05",
    "name": "Pro Pyme Marketing",
    "description": "Pro Pyme Marketing — portal de contenidos",
    "url": "https://webpropyme.com/",
    "language": "es",
    "contact": {
        "url": "https://webpropyme.com/contacto/"
    },
    "tools": [
        {
            "name": "search_content",
            "description": "Busca artículos en Pro Pyme Marketing 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://webpropyme.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": "business",
                            "1": "design",
                            "2": "design-marketing",
                            "3": "modern",
                            "5": "new",
                            "6": "technology"
                        }
                    },
                    "limit": {
                        "type": "integer",
                        "default": 10,
                        "maximum": 20
                    }
                },
                "required": [
                    "category"
                ]
            },
            "endpoint": {
                "method": "GET",
                "url": "https://webpropyme.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": "Pro Pyme Marketing",
                "description": "",
                "url": "https://webpropyme.com/",
                "language": "es",
                "categories": {
                    "0": {
                        "name": "Business",
                        "slug": "business",
                        "count": 3
                    },
                    "1": {
                        "name": "Design",
                        "slug": "design",
                        "count": 1
                    },
                    "2": {
                        "name": "Design &amp; Marketing",
                        "slug": "design-marketing",
                        "count": 6
                    },
                    "3": {
                        "name": "Modern",
                        "slug": "modern",
                        "count": 3
                    },
                    "5": {
                        "name": "New",
                        "slug": "new",
                        "count": 3
                    },
                    "6": {
                        "name": "Technology",
                        "slug": "technology",
                        "count": 6
                    }
                },
                "llms_txt": "https://webpropyme.com/llms.txt",
                "llms_full": "https://webpropyme.com/llms-full.txt"
            }
        }
    ],
    "resources": [
        {
            "name": "llms.txt",
            "url": "https://webpropyme.com/llms.txt",
            "description": "Índice resumido del sitio para LLMs"
        },
        {
            "name": "llms-full.txt",
            "url": "https://webpropyme.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: \"Pro Pyme Marketing (https://webpropyme.com/)\""
    }
}