We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/deleonio/public-ui-kolibri'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
@use '../components/@shared/mixins' as *;
@mixin kol-card {
.kol-card {
/* Visible with forced colors */
outline: transparent solid to-rem(1);
display: grid;
height: 100%;
overflow: visible;
gap: to-rem(8);
grid-template-areas:
'header close'
'content content';
grid-template-columns: 1fr min-content;
grid-template-rows: min-content 1fr;
&__header {
align-self: start;
grid-area: header;
}
&__content {
align-self: stretch;
grid-area: content;
}
&__close-button {
grid-area: close;
}
}
}