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
basic.tsx•545 B
import type { FC } from 'react';
import React from 'react';
import { FormWrap } from '../FormWrap';
import { SampleDescription } from '../SampleDescription';
import { ComboboxVariants } from './partials/variants';
export const ComboboxBasic: FC = () => {
return (
<>
<SampleDescription>
<p>KolCombobox combines a text input with a suggestion list, enabling users to either type in a value or to select on of the suggestions.</p>
</SampleDescription>
<FormWrap RefComponent={ComboboxVariants} showButtons={false} />
</>
);
};