We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/systeminit/si'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
ToastApplyFailed.vue•562 B
<template>
<div class="flex flex-col text-sm text-center">
<div class="text-destructive-600 dark:text-destructive-500">
Change set could not be applied...
</div>
<div v-if="precondition">
We are still updating the simulation. Try again momentarily.
</div>
<div v-else class="text-destructive-600 dark:text-destructive-500">
There was a failure on our end. We have been notified. Feel free to try
again.
</div>
</div>
</template>
<script lang="ts" setup>
defineProps<{
precondition: boolean;
}>();
</script>