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 { KolHeading, KolKolibri } from '@public-ui/react-v19';
import { SampleDescription } from '../SampleDescription';
export const KolibriBasic: FC = () => (
<>
<SampleDescription>
<p>KolKolibri renders the KoliBri logo. The sample show the logo with and without label and with a custom color.</p>
</SampleDescription>
<KolHeading class="block" _level={3} _label="Regular" />
<KolKolibri class="block" style={{ width: 300 }} />
<KolHeading class="block" _level={3} _label="Without Label" />
<KolKolibri class="block" style={{ width: 300 }} _labeled={false} />
<KolHeading class="block" _level={3} _label="Customized color" />
<KolKolibri class="block" style={{ width: 300 }} _color="#cc006e" />
</>
);