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
UnscheduledDowntime.vue•801 B
<template>
<div class="flex flex-row items-center gap-xs">
<Icon name="bell" class="text-destructive-600" />
<div class="flex flex-col text-sm text-center">
<div>
System Initiative was unable to serve the provided request. Please try again later. You can check our
<a class="text-action-500" href="https://status.systeminit.com">Status Page</a>
, visit our
<a class="text-action-500" href="https://discord.com/invite/system-init">Discord</a>
or email
<a class="text-action-500" href="mailto:support@systeminit.com">support@systeminit.com</a>
for information or assistance if this problem persists.
</div>
</div>
</div>
</template>
<script lang="ts" setup>
import { Icon } from "@si/vue-lib/design-system";
</script>