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
<div class="result-card">
{{ result | safe }}
{% if report_url or street_address %}
<div style="margin-top:16px;padding-top:16px;border-top:1px solid var(--border, #333749);">
<div style="font-weight: 600; margin-bottom: 12px; color: var(--text-muted);">Quick Actions</div>
<div style="display: flex; flex-wrap: wrap; gap: 10px;">
<!-- Primary: View Property Report -->
{% if report_url %}
<a href="{{ report_url }}"
style="display:inline-flex;align-items:center;gap:6px;padding:10px 20px;background:var(--accent, #4f8ff7);color:#fff;text-decoration:none;border-radius:8px;font-weight:600;font-size:0.9rem;">
📊 View Property Report
</a>
{% endif %}
<!-- Analyze Project (prefill with permit type/address) -->
{% if permit_type or street_address %}
<form method="POST" action="/ask" style="display: inline; margin: 0;">
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
<input type="hidden" name="q" value="I want to analyze a project at {{ street_address }}">
<button type="submit"
style="display:inline-flex;align-items:center;gap:6px;padding:10px 20px;background:var(--surface);color:var(--text);border:1px solid var(--border);text-decoration:none;border-radius:8px;font-weight:600;font-size:0.9rem;cursor:pointer;font-family:inherit;">
🔍 Analyze Project
</button>
</form>
{% endif %}
<!-- Search Violations at this address -->
{% if street_address %}
<form method="POST" action="/ask" style="display: inline; margin: 0;">
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
<input type="hidden" name="q" value="Are there any violations at {{ street_address }}?">
<button type="submit"
style="display:inline-flex;align-items:center;gap:6px;padding:10px 20px;background:var(--surface);color:var(--text);border:1px solid var(--border);text-decoration:none;border-radius:8px;font-weight:600;font-size:0.9rem;cursor:pointer;font-family:inherit;">
⚠️ Check Violations
</button>
</form>
{% endif %}
</div>
</div>
{% endif %}
</div>