Skip to main content
Glama
tag.html1.91 kB
{% extends "base.html" %} {% block title %}{{ dimension }}: {{ value }} - MCP Notes Wiki{% endblock %} {% block content %} <div class="tag-view"> <header class="page-header"> <h1> <span class="tag tag-{{ dimension }}">{{ value }}</span> </h1> <p class="subtitle">{{ notes|length }} note(s) tagged with {{ dimension }}: {{ value }}</p> </header> {% if notes %} <div class="notes-list"> {% for note in notes %} <article class="note-card"> <h3><a href="/note/{{ note.id }}">{{ note.title }}</a></h3> <div class="note-meta"> {% if note.tags.category and dimension != 'category' %} <a href="/tag/category/{{ note.tags.category }}" class="tag tag-category">{{ note.tags.category }}</a> {% endif %} {% if note.tags.type and dimension != 'type' %} <a href="/tag/type/{{ note.tags.type }}" class="tag tag-type">{{ note.tags.type }}</a> {% endif %} {% if note.tags.priority and dimension != 'priority' %} <a href="/tag/priority/{{ note.tags.priority }}" class="tag tag-priority">{{ note.tags.priority }}</a> {% endif %} {% if dimension != 'topics' %} {% for topic in note.tags.topics %} <a href="/tag/topics/{{ topic }}" class="tag tag-topic">{{ topic }}</a> {% endfor %} {% endif %} <span class="note-date">{{ note.updated|datetime }}</span> </div> <div class="note-preview"> {{ note.content[:200] }}{% if note.content|length > 200 %}...{% endif %} </div> </article> {% endfor %} </div> {% else %} <p class="empty-state">No notes found with this tag.</p> {% endif %} </div> {% endblock %}

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/StarrStack/mcp-notes'

If you have feedback or need assistance with the MCP directory API, please join our Discord server