We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tbrennem-source/sf-permits-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
tier_gate_overlay.html•1.26 KiB
{# Tier gate overlay — full-page blur + CTA for teaser mode.
Include at the bottom of any gated page template.
Context vars (injected by context processor):
tier_locked: bool — True when the page is gated for this user
tier_required: str — 'beta' or 'premium'
tier_current: str — user's current tier (e.g. 'free', 'beta')
When tier_locked is True:
- This overlay renders as a fixed, full-viewport dialog
- JS in tier-gate.js adds .tier-locked-content to the main container,
which blurs page content (8px) so users can see structure but not read data
When tier_locked is False:
- Nothing renders — zero DOM impact on gated pages for entitled users
#}
{% if tier_locked %}
<div class="tier-gate-overlay"
data-track="tier-gate-impression"
data-tier-required="{{ tier_required }}"
data-tier-current="{{ tier_current }}">
<div class="tier-gate-card glass-card">
<h3>See this for your property</h3>
<p>Get full access to permit intelligence for your address.</p>
<a href="/beta/join"
class="ghost-cta tier-gate-cta"
data-track="tier-gate-click">
Get access →
</a>
<p class="tier-gate-subtext">Free during beta. Takes 30 seconds.</p>
</div>
</div>
{% endif %}