{
    "$schema": "https://modelcontextprotocol.io/schemas/server-card/0.1/schema.json",
    "serverInfo": {
        "name": "HEYLOVE Public Agent Discovery",
        "version": "1.0.0"
    },
    "transport": {
        "type": "streamable-http",
        "endpoint": "https://heylove.ua/mcp"
    },
    "transports": [
        {
            "type": "streamable-http",
            "endpoint": "https://heylove.ua/mcp"
        }
    ],
    "capabilities": {
        "tools": {
            "listChanged": false
        },
        "resources": {},
        "prompts": {}
    },
    "tools": [
        {
            "name": "heylove.search",
            "description": "Search public HEYLOVE pages and products.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "query": {
                        "type": "string",
                        "description": "Search query."
                    }
                },
                "required": [
                    "query"
                ]
            }
        },
        {
            "name": "heylove.catalog_url",
            "description": "Return the public catalog URL, optionally for a category slug.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "category": {
                        "type": "string",
                        "description": "Optional product category slug."
                    }
                }
            }
        },
        {
            "name": "heylove.discovery_links",
            "description": "Return public discovery URLs for API catalog, auth metadata, MCP, and skills.",
            "inputSchema": {
                "type": "object",
                "properties": {}
            }
        }
    ]
}