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
prep_checklist.html•450 B
{# Prep checklist category section — renders items for a single category.
Used for HTMX partial reload of a category group. #}
<div class="prep-category" id="prep-cat-{{ category_key }}">
<h3 class="prep-category-heading">{{ category_label }}</h3>
{% for item in items %}
{% include "fragments/prep_item.html" %}
{% endfor %}
{% if not items %}
<p class="prep-empty">No items in this category.</p>
{% endif %}
</div>