We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hypothesi/mcp-server-tauri'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
<template>
<span v-if="!loading && version" class="version-badge">
{{ version }}
</span>
</template>
<script setup lang="ts">
import { ref, onMounted } from 'vue';
const version = ref(''),
loading = ref(true);
onMounted(async () => {
try {
// Fetch latest release from GitHub API
const response = await fetch(
'https://api.github.com/repos/hypothesi/mcp-server-tauri/releases/latest'
);
if (response.ok) {
const data = await response.json();
version.value = data.tag_name || '';
}
} catch{
// Silently fail - version badge just won't show
} finally {
loading.value = false;
}
});
</script>
<style scoped>
.version-badge {
display: inline-flex;
align-items: center;
padding: 2px 8px;
font-size: 12px;
font-weight: 500;
color: var(--vp-c-brand-1);
background-color: var(--vp-c-brand-soft);
border-radius: 10px;
margin-left: 8px;
}
</style>