We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/DamionR/RivalSearchMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
paywall.py•323 B
#!/usr/bin/env python3
"""
Paywall detection configurations for RivalSearchMCP.
"""
PAYWALL_INDICATORS = [
"subscribe",
"paywall",
"sign in to read",
"become a member",
"login to continue",
]
def get_paywall_indicators():
"""Get list of paywall indicators."""
return PAYWALL_INDICATORS.copy()