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 '../../mixins/to-rem' as *;
@use '../mixins/alert-wc' as *;
@use '../mixins/custom-suggestions-option' as *;
@use '../mixins/custom-suggestions-options-group' as *;
@use '../mixins/custom-suggestions-toggle' as *;
@use '../@shared/input-text' as *;
$option-height: to-rem(40);
$visible-options: 5;
@layer kol-theme-component {
@include kol-alert-theme;
@include kol-custom-suggestions-option-theme($option-height);
@include kol-custom-suggestions-options-group-theme($option-height, $visible-options);
@include kol-custom-suggestions-toggle-theme;
.kol-combobox {
&__group {
color: var(--color-grey);
display: inline-flex;
width: 100%;
min-height: var(--a11y-min-size);
min-height: var(--a11y-min-size);
padding: to-rem(1) 0.5em;
order: 4;
align-items: center;
align-items: center;
text-align: left;
}
&__input {
position: relative;
width: calc(100% - to-rem(24));
flex-grow: 1;
border: none;
&::placeholder {
color: var(--color-grey-50);
}
&:first-child {
padding-left: var(--spacing);
}
&:last-child {
padding-right: var(--spacing);
}
&:focus {
border: none;
}
}
}
}