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•509 B
import type { FC } from 'react';
import React from 'react';
import { FormWrap } from '../FormWrap';
import { SampleDescription } from '../SampleDescription';
import { SingleSelectVariants } from './partials/variants';
export const SingleSelectBasic: FC = () => {
return (
<>
<SampleDescription>
<p>SingleSelect provides a select field for a single value, supported by a search field.</p>
</SampleDescription>
<FormWrap RefComponent={SingleSelectVariants} showButtons={false} />
</>
);
};