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
import type { FC } from 'react';
import React from 'react';
import type { Components } from '@public-ui/components';
import { FormWrap } from '../FormWrap';
import { SampleDescription } from '../SampleDescription';
import { InputCheckboxVariants } from './partials/variants';
export const InputCheckboxButton: FC = () => (
<>
<SampleDescription>
<p>This sample shows KolInputCheckbox in the variant "button".</p>
</SampleDescription>
<FormWrap<Components.KolInputCheckbox> RefComponent={InputCheckboxVariants} _variant="button" showButtons={false} />
</>
);