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-form-field {
.kol-form-field {
$root: &;
display: grid;
&__label {
#{$root}:not(#{$root}--disabled) & {
cursor: pointer;
}
#{$root}--disabled & {
opacity: 0.5;
}
}
&__label-text::after {
#{$root}--required & {
content: '*' / '';
}
}
&__hint {
#{$root}--disabled & {
opacity: 0.5;
}
}
&__tooltip .span-label::after {
#{$root}--required & {
content: '*' / '';
}
}
}
}